-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "network",
"description": "",
"main": "index.js",
"scripts": {
"server": "webpack-dev-server",
"build": "webpack",
"test": "find ./test/ -name '*.spec.js' | xargs mocha",
"coverage": "find ./test/ -name '*.spec.js' | xargs nyc _mocha"
},
"author": "mrkm4ntr",
"license": "Apache 2.0 Licence",
"dependencies": {
"react": "^15.1.0",
"react-bootstrap": "^0.29.4",
"react-dom": "^15.1.0",
"tinycolor2": "^1.3.0",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-power-assert": "^1.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"enzyme": "^2.3.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"nyc": "^6.6.1",
"power-assert": "^1.4.1",
"react-addons-test-utils": "^15.1.0",
"sinon": "^1.17.4",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"private": true
}