-
Notifications
You must be signed in to change notification settings - Fork 315
/
package.json
77 lines (77 loc) · 1.57 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
{
"name": "fontmin",
"version": "1.1.0",
"description": "Minify font seamlessly, font subsetter, webfont (eot, woff, svg) converter.",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"font",
"webfont",
"icon",
"iconfont",
"font-face",
"compress",
"minify",
"font-cli",
"otf",
"ttf",
"woff",
"woff2",
"eot",
"svg",
"ttf2eot",
"ttf2woff",
"ttf2woff2",
"ttf2svg",
"svg2ttf",
"css",
"base64"
],
"author": "junmer",
"license": "MIT",
"repository": "ecomfe/fontmin",
"engines": {
"node": ">=12"
},
"bin": {
"fontmin": "cli.js"
},
"scripts": {
"test": "mocha test/*.spec.js",
"coverage": "nyc mocha --reporter spec --check-leaks test/*.spec.js"
},
"exports": {
"require": "./index.js",
"import": "./index.js"
},
"dependencies": {
"@types/node": "^12.20.55",
"@types/through2": "^2.0.38",
"b3b": "^0.0.1",
"buffer-to-vinyl": "^1.0.0",
"code-points": "^2.0.0-1",
"concat-stream": "^2.0.0",
"fonteditor-core": "^2.4.0",
"get-stdin": "^8.0.0",
"is-otf": "^0.1.2",
"is-svg": "^4.2.1",
"is-ttf": "^0.2.2",
"lodash": "^4.17.10",
"meow": "^9.0.0",
"pako": "^2.0.3",
"replace-ext": "^2.0.0",
"stream-combiner": "^0.2.1",
"through2": "^4.0.2",
"ttf2woff2": "^4.0.1",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"chai": "^4.1.2",
"gulp-clean": "^0.4.0",
"is-eot": "^1.0.0",
"is-woff": "^1.0.1",
"is-woff2": "^1.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0"
}
}