forked from jaywcjlove/svgtofont
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.98 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "svgtofont",
"version": "3.6.0",
"description": "Converts SVG to TTF/EOT/WOFF/WOFF2/SVG format fonts.",
"main": "lib/index.js",
"bin": {
"svgtofont": "lib/cli.js"
},
"scripts": {
"prepare": "npm run build",
"start": "node lib/index.js",
"watch": "npm run watch:ts & npm run build:types -- --watch",
"watch:ts": "tsbb watch",
"build": "npm run build:ts && npm run build:types",
"build:ts": "tsbb build",
"build:types": "tsbb types",
"example": "node test/example/index.js",
"example:templates": "node test/templates/index.js",
"pretest": "npm run example",
"test": "tsbb test",
"coverage": "npm run example && tsbb test --coverage"
},
"author": "Kenny <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/svgtofont.git"
},
"jest": {},
"svgtofont": {
"css": {
"fontSize": "12px"
}
},
"keywords": [
"webfont",
"font",
"icon",
"iconfont",
"font-face",
"compress",
"minify",
"font-cli",
"ttf",
"woff",
"eot",
"svg",
"ttf2eot",
"ttf2woff",
"ttf2svg",
"svg2ttf",
"css",
"base64"
],
"license": "MIT",
"files": [
"lib",
"src"
],
"dependencies": {
"@babel/runtime": "7.11.2",
"@types/cheerio": "0.22.22",
"@types/ejs": "3.0.4",
"@types/fs-extra": "9.0.1",
"@types/html-minifier": "4.0.0",
"@types/svgo": "1.3.3",
"@types/ttf2woff2": "2.0.0",
"cheerio": "1.0.0-rc.3",
"colors-cli": "1.0.27",
"copy-template-dir": "1.4.0",
"del": "6.0.0",
"ejs": "3.1.5",
"fs-extra": "9.0.1",
"html-minifier": "4.0.0",
"image2uri": "1.0.4",
"move-file": "2.0.0",
"svg2ttf": "5.0.0",
"svgicons2svgfont": "9.1.1",
"svgo": "1.3.2",
"ttf2eot": "2.0.0",
"ttf2woff": "2.0.2",
"ttf2woff2": "3.0.0",
"yargs": "16.0.3"
},
"devDependencies": {
"@types/jest": "26.0.14",
"@types/svg2ttf": "5.0.0",
"tsbb": "1.7.6"
}
}