-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.46 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
90
91
92
93
94
95
{
"name": "subset-iconfont",
"version": "1.0.3",
"description": "Utility to generate subset of webfonts from subsets of multiple iconfont and use FontAwesome style css.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"font",
"webfont",
"subset",
"icon",
"icons",
"iconfont",
"font-awesome",
"subsetter",
"google-material-icons",
"material-design-icons",
"bootstrap-icons",
"metadata",
"font-license",
"reduce-size",
"multiple-iconfont"
],
"scripts": {
"clean": "rimraf dist output output-standalone",
"precopy": "npm run clean",
"copy": "copyfiles -e \"**/*.ts\" -u 1 \"src/**/*\" dist",
"prebuild": "npm run copy",
"build": "tsc",
"demo": "node dist/demo-combine.js && node dist/demo-standalone.js",
"dev-demo": "npm run build && npm run demo",
"pretest": "npm run build",
"test": "nyc --reporter=lcov mocha tests/*.mocha.ts",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts",
"postlint": "npm run prettier",
"prettier": "npx prettier --write ."
},
"author": "Dong Zhuang <[email protected]> (https://github.com/dzhuang)",
"files": [
"dist",
"demo.js",
"package.json"
],
"mocha": {
"colors": true,
"recursive": [
"tests/**/*.mocha.ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"js-yaml": "^4.1.0",
"mkdirp": "^3.0.1",
"node-sass": "^9.0.0",
"nunjucks": "^3.2.3",
"subset-font": "^2.0.0",
"tmp": "^0.2.1",
"ttf2eot": "^3.1.0",
"winston": "^3.7.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dzhuang/subset-iconfont.git"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",
"@material-design-icons/svg": "^0.14.1",
"@mdi/font": "^7.0.96",
"@mdi/svg": "^7.0.96",
"@types/mkdirp": "^2.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"bootstrap-icons": "^1.8.3",
"copyfiles": "^2.4.1",
"eslint": "^8.17.0",
"eslint-plugin-prettier": "^5.0.0",
"font-awesome": "^4.7.0",
"material-icons": "^1.11.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "3.1.0",
"rimraf": "^5.0.0",
"rollup": "^3.1.0",
"sinon": "^15.0.0",
"ts-node": "^10.8.2",
"typescript": "^5.0.4"
}
}