forked from smart-facility/cognicity-reports-floodgauge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 861 Bytes
/
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
{
"name": "cognicity-reports-floodgauge",
"description": "CogniCity reports Floodgauge module",
"version": "2.0.1",
"author": "Tomas Holderness <[email protected]>",
"preferGlobal": false,
"private": true,
"dependencies": {
"dotenv": "^4.0.0",
"ssl-root-cas": "^1.2.5"
},
"devDependencies": {
"jsdoc": "^3.4.3",
"jshint": "^2.9.4",
"mocha": "^3.2.0",
"unit.js": "^2.0.0",
"istanbul": "^0.4.5"
},
"engines": {
"node": "^4.2.1"
},
"scripts": {
"test": "npm run jshint",
"jshint": "jshint index.js FloodgaugeDataSource.js sample-floodgauge-config.js",
"build-docs": "jsdoc -d docs package.json index.js sample-floodgauge-config.js FloodgaugeDataSource.js",
"build": "npm test && npm run build-docs && npm run coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha"
}
}