-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 952 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@hayes0724/web-font-converter",
"version": "1.0.5",
"main": "src/index.js",
"license": "MIT",
"author": "eric hayes <[email protected]>",
"bin": {
"font-convert": "./src/cli/index.js"
},
"engines": {
"node": ">=10.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hayes0724/web-font-converter.git"
},
"homepage": "https://github.com/hayes0724/web-font-converter",
"keywords": [
"ttf2woff",
"ttf2woff2",
"otf2woff",
"otf2woff2",
"otf2svg",
"otf2ttf",
"svg2woff",
"svg2woff2"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"chalk": "^4.1.0",
"minimist": "^1.2.5",
"otf2svg": "^1.0.2",
"path": "^0.12.7",
"svg2ttf": "^5.0.0",
"ttf2woff": "^2.0.2",
"ttf2woff2": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.10.0",
"fs-extra": "^9.0.1",
"jest": "^26.4.2",
"prettier": "^2.1.2"
}
}