forked from smart-facility/cognicity-reports
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 956 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
30
31
32
33
{
"name": "cognicity-reports",
"description": "CogniCity Reports Base module",
"version": "2.0.0",
"author": "Tomas Holderness <[email protected]>",
"preferGlobal": false,
"private": true,
"dependencies": {
"twitter": "^1.7.0",
"dotenv": "^4.0.0",
"pg": "^6.1.2",
"rsvp": "^3.3.3",
"winston": "^2.3.1"
},
"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 && npm run mocha",
"jshint": "jshint app.js Reports.js reports-config.js test/test-config.js test/testApp.js test/testReports.js",
"mocha": "mocha test",
"build-docs": "jsdoc -d docs package.json reports-config.js app.js Reports.js",
"build": "npm test && npm run build-docs && npm run coverage",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha"
}
}