-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·53 lines (53 loc) · 1.59 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
{
"name": "power-meter-api",
"version": "2.1.6",
"author": "Thomas Malt",
"description": "API for accessing power meter data from a redis database backend.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tfmalt/power-meter-api.git"
},
"dependencies": {
"args": "^2.4.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"chalk": "^1.1.3",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.1",
"debug": "^2.6.3",
"express": "^4.15.2",
"morgan": "^1.8.1",
"node-fetch": "^1.6.3",
"pug": "^2.0.0-beta11",
"redis": "^2.7.1",
"vitalsigns": "^0.4.3"
},
"devDependencies": {
"blanket": "^1.2.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-http": "^3.0.0",
"codeclimate-test-reporter": "^0.4.1",
"eslint-config-defaults": "^9.0.0",
"fakeredis": "^2.0.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"sinon": "^2.1.0"
},
"engines": {
"node": "^6.10.x",
"npm": "^3.10.x"
},
"scripts": {
"test": "NODE_ENV=test nyc --reporter=text --reporter=lcov mocha **/*test.js",
"integration": "NODE_ENV=test nyc --reporter=text --reporter=lcov mocha **/*integration.js",
"alltests": "redis-cli HDEL 2017 03 && TZ=Europe/Oslo NODE_ENV=test nyc --reporter=text --reporter=lcov mocha test/*.js",
"codeclimate": "CODECLIMATE_REPO_TOKEN=d97115774297bc8039645d81ba3ba7aec5171db807e63aeebbdbddb7d7d10ca0 codeclimate-test-reporter < coverage/lcov.info",
"start": "node ./app.js"
},
"bin": {
"powermeter": "./bin/powermeter.js"
}
}