-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "@sysvale/cuida-icons",
"version": "1.15.1",
"description": "cuida icons",
"main": "index.js",
"files": [
"dist/*"
],
"sideEffects": false,
"scripts": {
"build": "npm run transform-icons && npm run copy-library-assets",
"build:showcase": "npm run build && npm run bundle-showcase && npm run copy-showcase-files",
"bundle-showcase": "webpack --config ./showcase/webpack.config.js",
"commit": "git-cz",
"copy-showcase-files": "cpx showcase/index.html dist/showcase && cpx showcase/styles.css dist/showcase",
"copy-library-assets": "cpx package.json dist && cpx README.md dist",
"transform-icons": "svg-to-ts",
"serve": "npm run build:showcase && http-server ./dist/showcase -o"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sysvale/cuida-icons.git"
},
"bugs": {
"url": "https://github.com/Sysvale/cuida-icons/issues"
},
"homepage": "https://github.com/Sysvale/cuida-icons#readme",
"devDependencies": {
"cpx": "^1.5.0",
"git-cz": "^4.7.1",
"npm-run-all": "^4.1.5",
"svg-to-ts": "^6.0.0",
"typescript": "^4.0.3",
"webpack": "^3.12.0"
}
}