-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "@rsuite/icon-font",
"version": "4.1.0",
"description": "All rsuite icon resource file and icon fonts",
"scripts": {
"build": "npm run build:fonts && npm run build:components",
"build:fonts": "rm -rf dist && gulp",
"build:components": "rm -rf components && cp -R dist/components ./components && npm run build:compolile-components",
"build:compolile-components": "rm -rf lib && babel dist/components --extensions .tsx --out-dir lib",
"prepublishOnly": "rm -rf icons && rm -rf fonts && rm -rf components && rm -rf dist && gulp prepublish && cp -R dist/fonts ./fonts && svgo -f svgs && npm run build:components"
},
"keywords": [
"rsuite",
"icon-font"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rsuite/rsuite-icon-font.git"
},
"author": "Godfery Yang <[email protected]> (https://hiyangguo.github.io/)",
"license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)",
"bugs": {
"url": "https://github.com/rsuite/rsuite-icon-font/issues"
},
"homepage": "https://github.com/rsuite/rsuite-icon-font#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@svgr/core": "^5.4.0",
"@svgr/plugin-jsx": "^5.4.0",
"@svgr/plugin-prettier": "^5.4.0",
"@svgr/plugin-svgo": "^5.4.0",
"async": "^2.1.5",
"camelcase": "^6.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-consolidate": "^0.2.0",
"gulp-iconfont": "^10.0.3",
"gulp-rename": "^2.0.0",
"gulp-spawn": "^0.4.5",
"lodash": "^4.17.4",
"svgo": "^1.0.3"
},
"CONFIG": {
"fontName": "rsuite-icon-font",
"className": "rs-icon",
"lessClassNamePrev": "@{ns}icon",
"svgSrc": [
"src/svg/legacy/*.svg"
]
},
"files": [
"fonts",
"components",
"lib"
]
}