forked from JackPu/reactjs-percentage-circle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "reactjs-percentage-circle",
"version": "1.0.0",
"description": "a component for loading spinner",
"keywords": [
"react",
"percentage",
"spinner",
"circle"
],
"main": "src/index.js",
"repository": {
"url": "https://github.com/JackPu/react-percentage-circle.git",
"type": "git"
},
"scripts": {
"start": "webpack-dev-server --port 9000 --open",
"build": "webpack --config ./webpack.config.build.js --progress --colors",
"build_demo": "webpack --config ./webpack.config.js --progress --colors",
"test": "karma start karma.conf.js"
},
"author": "JackPu <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"browserify": "^13.1.0",
"css-loader": "^0.26.0",
"enzyme": "^2.5.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"expect": "^1.20.2",
"history": "^4.3.0",
"jasmine-core": "^2.5.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.13.1",
"watchify": "^3.7.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"engines": {
"node": ">=6.0.0",
"npm": "~3.3.6"
}
}