forked from ssfbank/icomoon-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "@axinvd/icomoon-cli",
"version": "0.0.5",
"description": "cli for icomoon font creation",
"main": "dist/index.js",
"types": "index.d.ts",
"bin": {
"icomoon-cli": "dist/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node dist/cli.js -i test/*.svg -s test -f ./test,ttf -n test/iconNames.ts -l ./test/fon-lock.json",
"lint": "tsc -p . && eslint ./src --ext .js,.jsx,.ts,.tsx",
"publish": "npm publish --access public"
},
"homepage": "https://github.com/axinvd/icomoon-cli.git",
"bugs": {
"url": "https://github.com/Axinvd/icomoon-cli/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/axinvd/icomoon-cli.git"
},
"keywords": [
"icomoon",
"font",
"react",
"react-native",
"react-component",
"react-native-component",
"mobile",
"ios",
"android",
"ui",
"icon",
"icons",
"vector",
"svg"
],
"author": "",
"license": "ISC",
"dependencies": {
"extract-zip": "^2.0.1",
"fs-extra": "^10.0.0",
"puppeteer": "9.1.1",
"commander": "^7.2.0",
"glob": "^7.1.7",
"camelcase": "^6.2.0"
},
"devDependencies": {
"@tsconfig/node10": "^1.0.7",
"@types/fs-extra": "^9.0.11",
"@types/glob": "^7.1.3",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
}
}