You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
640 B
34 lines
640 B
2 years ago
|
{
|
||
|
"name": "ttf2woff",
|
||
|
"version": "3.0.0",
|
||
|
"description": "Convert TTF font to WOFF",
|
||
|
"keywords": [
|
||
|
"font",
|
||
|
"ttf",
|
||
|
"woff",
|
||
|
"convertor"
|
||
|
],
|
||
|
"author": "Viktor Semykin <thesame.ml@gmail.com>",
|
||
|
"license": "MIT",
|
||
|
"repository": "fontello/ttf2woff",
|
||
|
"bin": {
|
||
|
"ttf2woff": "./ttf2woff.js"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js",
|
||
|
"ttf2woff.js"
|
||
|
],
|
||
|
"scripts": {
|
||
|
"lint": "./node_modules/.bin/eslint .",
|
||
|
"test": "npm run lint && ./node_modules/.bin/mocha"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"argparse": "^2.0.1",
|
||
|
"pako": "^1.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "^7.1.0",
|
||
|
"mocha": "^7.2.0"
|
||
|
}
|
||
|
}
|