-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.66 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
{
"name": "arc-progress",
"version": "1.0.0",
"description": "arc-progress circular-progress progress",
"main": "lib/index.js",
"scripts": {
"start": "webpack-dev-server --config build/dev.js",
"build": "rimraf lib && npm run prod && npm run movedts && npm run min",
"prod": "webpack --config build/prd.js",
"movedts": "cp lib/src/arc-progress.d.ts lib/index.d.ts",
"min": "rimraf dist && npm run prod --export && rimraf lib/src",
"demo": "rimraf preview && webpack --config build/prod-demos.js && rimraf ../preview/static/arc-progress && cp -r preview/ ../preview/static/arc-progress",
"publish": "npm run prod && npm publish --registry https://registry.npmjs.org"
},
"keywords": [
"arc-progress",
"circular-progress",
"progress"
],
"author": "Hzy0913",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hzy0913/arc-progress/issues"
},
"homepage": "https://github.com/Hzy0913/arc-progress#readme",
"devDependencies": {
"awesome-typescript-loader": "^5.2.1",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^4.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"progress-bar-webpack-plugin": "^1.12.1",
"rimraf": "^3.0.0",
"style-loader": "^0.23.1",
"tslint": "^5.20.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.2",
"url-loader": "^2.1.0",
"vconsole": "^3.2.2",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}