-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
{
"name": "mqq-icons",
"version": "0.0.31",
"description": "Icon automation workflow with Figma",
"main": "dist/index.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
"dist",
"es",
"src"
],
"repository": "[email protected]:yued-fe/mqq-icons.git",
"author": "ziven27",
"keywords": [
"react",
"icons",
"svg",
"inline",
"figma",
"juuust",
"design"
],
"bugs": {
"url": "https://github.com/yued-fe/mqq-icons/issues"
},
"homepage": "https://github.com/yued-fe/mqq-icons",
"scripts": {
"generate": "sudo rm -rf dist/ && sudo rm -rf src/dist/ && node bin/build.js",
"build": "./node_modules/.bin/babel src/dist --out-dir dist",
"all": "yarn generate && yarn build"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"cheerio": "^1.0.0-rc.3",
"svgo": "^1.3.0",
"uppercamelcase": "^3.0.0"
}
}