forked from kimmobrunfeldt/react-progressbar.js
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.06 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-progressbar.js",
"version": "0.2.1-dev",
"description": "React wrapper for progressbar.js",
"main": "dist/react-progressbar.js",
"types": "typings/react-progressbar.js.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/kimmobrunfeldt/react-progressbar.js.git"
},
"keywords": [
"react",
"progressbar",
"progress",
"loader",
"pace",
"bar",
"radial",
"circle",
"semicircle",
"line",
"indicator",
"loading",
"circular"
],
"author": "Kimmo Brunfeldt <[email protected]> (http://kimmobrunfeldt.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimmobrunfeldt/react-progressbar.js/issues"
},
"homepage": "https://github.com/kimmobrunfeldt/react-progressbar.js#readme",
"dependencies": {
"lodash.isequal": "^4.1.4",
"progressbar.js": "^1.0.1",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-eslint": "^7.2.3",
"babel-jscs": "^3.0.0-beta1",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"bluebird": "^3.3.5",
"commander": "^2.8.1",
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"http-server": "^0.10.0",
"jscs": "^3.0.3",
"lodash": "^4.11.1",
"mustache": "^2.1.3",
"reactify": "^1.1.1",
"semver": "^5.0.1",
"shelljs": "^0.7.7",
"string": "^3.3.1",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"start": "concurrent 'npm run serve' 'npm run watch-js' 'open http://localhost:8080'",
"watch-js": "watchify local-dev/main.js -o local-dev/bundle.js --debug --verbose",
"build": "babel src/main.js -o ./dist/react-progressbar.js",
"serve": "http-server ./local-dev -c 0",
"lint": "./tools/lint.sh",
"jscs": "jscs ./src ./test",
"eslint": "eslint --ext .js ./src ./test"
}
}