-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "pull-iconfont",
"version": "3.0.0",
"description": "pull iconfont, download iconfont",
"main": "./dist/index.js",
"type": "module",
"bin": {
"pull-iconfont": "./dist/index.js"
},
"files": [
"src",
"dist"
],
"scripts": {
"test": "./dist/index.js -c ./example/.pulliconfontrc.js",
"build": "tsc --project tsconfig.json",
"lint:ts": "eslint ./src --fix --ext .ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hansinhu/pull-iconfont.git"
},
"keywords": [
"download",
"iconfont",
"from",
"iconfont.cn"
],
"author": "hansinhu <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/hansinhu/pull-iconfont/issues"
},
"homepage": "https://github.com/hansinhu/pull-iconfont#readme",
"dependencies": {
"@babel/parser": "^7.16.4",
"chalk": "^2.4.2",
"commander": "^12.1.0",
"node-fetch": "^3.3.2",
"rimraf": "^3.0.2",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@hansin/lint-config": "^0.0.1",
"@types/node": "^12.20.37",
"@types/rimraf": "^3.0.2",
"@types/unzipper": "^0.10.4",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"typescript": "^5.5.4"
}
}