-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.37 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "enviro-monitor-frontend",
"version": "0.0.0",
"description": "Frontend app for EnviroMonitor project",
"main": "index.js",
"scripts": {
"test": "mocha tests/testSetup.js tests/*",
"test:watch": "npm run test -- --watch",
"coverage": "nyc --reporter=text --reporter=text-summary --reporter=html npm run test",
"coverage:coveralls": "nyc --reporter=text-lcov npm run test | coveralls",
"start": "webpack-dev-server --content-base ./build/",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnviroMonitor/EnviroMonitorFrontend.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EnviroMonitor/EnviroMonitorFrontend/issues"
},
"homepage": "https://github.com/EnviroMonitor/EnviroMonitorFrontend#readme",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.14",
"coveralls": "^2.11.15",
"css-loader": "^0.26.1",
"enzyme": "^2.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"fetch-mock": "^5.8.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"jsdom": "9.9.1",
"jsdom-global": "2.1.1",
"mocha": "^3.2.0",
"mock-geolocation": "^1.0.11",
"nyc": "^10.0.0",
"purifycss-webpack-plugin": "^2.0.3",
"react-addons-test-utils": "^15.4.1",
"redux-mock-store": "^1.2.1",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^1.0.2",
"webpack-validator": "^2.2.11"
},
"dependencies": {
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"leaflet": "^1.0.2",
"lodash.assign": "^4.2.0",
"query-string": "^4.3.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-leaflet": "^1.0.2",
"react-redux": "^5.0.1",
"redux": "^3.6.0",
"redux-immutable": "^3.0.9",
"redux-thunk": "^2.1.0"
},
"nyc": {
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"include": [
"app/**/*.js",
"app/**/*.jsx"
],
"exclude": [
"*.spec.js"
],
"extension": [
".jsx"
],
"cache": true,
"all": true,
"check-coverage": true
}
}