-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.28 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
{
"name": "pretty-progressbar",
"version": "0.0.8",
"description": "A generic React component which renders a responsive and slick progress bars. It provides 4 type of progress bars with options to customize them accordingly.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-live": "webpack --progress -w",
"build-main": "webpack --progress",
"build-demo": "webpack --config webpack.demo.config.js --progress",
"build-prod": "set NODE_ENV=production && webpack --progress && webpack --config webpack.demo.config.js --progress -p",
"build": "npm run build-main && npm run build-demo -w"
},
"author": "krishcdbry",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/krishcdbry/pretty-progressbar.git"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.9",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.20.2",
"webpack": "^3.10.0"
}
}