-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
20 lines (20 loc) · 930 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"scripts": {
"build": "npm install && npm run grunt_geomap && npm run grunt_heatmap && npm run grunt_cassandra_health_panel;",
"grunt_geomap": "cd geomap_panel && npm install && npm run grunt && cd ..;",
"grunt_heatmap": "cd heatmap_panel && npm install && npm run grunt && cd ..;",
"grunt_cassandra_health_panel": "cd cassandra_health_panel && npm install && npm run grunt && cd ..;",
"testGeomap": "cd geomap_panel; npm install; npm test;",
"testEslint": "eslint templates/**/src/*.js geomap_panel/src/*.js",
"testCsslint": "csslint templates/**/src/css/*.css geomap_panel/src/css/*.css",
"test": "npm run testEslint; npm run testCsslint; npm run testGeomap"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"csslint": "^1.0.5",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1"
}
}