-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "font-subseter",
"version": "1.4.3",
"description": "A font subsetting tool based on opentype.js",
"main": "index.js",
"scripts": {
"build-examples": "rm -rf dist && parcel build --public-url ./ examples/index.html",
"dev": "nodemon --inspect -w builds -w lib builds/dev.js",
"test": "jest"
},
"files": [
"README.md",
"index.*",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/laoshu133/font-subseter.git"
},
"keywords": [
"otf",
"ttf",
"subset"
],
"author": "xiaomi",
"license": "MIT",
"bugs": {
"url": "https://github.com/laoshu133/font-subseter/issues"
},
"homepage": "https://github.com/laoshu133/font-subseter#readme",
"dependencies": {
"@babel/runtime-corejs2": "^7.10.1",
"execa": "^4.0.2",
"opentype.js": "^1.3.3",
"pako": "^1.0.11",
"sfnt2woff": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"axios": "^0.19.2",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"fontkit": "^1.8.1",
"fontmin": "^0.9.8",
"fs-extra": "^9.0.0",
"less": "^3.11.1",
"multer": "^1.4.2",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"tempfile": "^3.0.0"
}
}