forked from tagyoureit/nodejs-poolController
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.26 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.26 KB
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
{
"name": "nodejs-poolcontroller",
"version": "4.0.0",
"description": "NodeJS program to read and write to the the pool equipment serial bus.",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "snyk test && mocha ./specs/assets/config/config.json ./specs/index.spec.js --recursive ./specs --reporter spec --require ./specs/helpers/chai.js",
"test:one": "mocha ./specs/assets/config/config.json --reporter spec --require ./specs/helpers/chai.js ./specs/index.spec.js",
"test:cover": "istanbul cover _mocha -- ./specs/assets/config/config.json ./specs/index.spec.js --include-all-sources --recursive ./specs --require ./specs/helpers/chai.js --reporter spec",
"start:cover": "istanbul cover --handle-sigint src/index.js",
"open:cover": "open coverage/lcov-report/index.html",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"url": "git+https://github.com/tagyoureit/nodejs-poolController.git"
},
"keywords": [
"Pentair",
"Hayward",
"pool",
"home automation",
"solar",
"heat",
"temperature",
"pump",
"chlorinator",
"IoT"
],
"author": "Russell Goldin",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/tagyoureit/nodejs-poolController/issues"
},
"homepage": "https://github.com/tagyoureit/nodejs-poolController#readme",
"dependencies": {
"bluebird": "^3.5.0",
"bootstrap": "^3.3.7",
"bottlejs": "^1.6.1",
"dateformat": "^2.0.0",
"dequeue": "^1.0.5",
"express": "^4.15.3",
"http-auth": "^3.1.3",
"influx": "^5.0.7",
"jquery-ui-dist": "^1.12.1",
"promised-io": "^0.3.5",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"serialport": "^4.0.7",
"socket.io": "^2.0.2",
"socket.io-client": "^2.0.2",
"underscore": "^1.8.3",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^4.0.1",
"coveralls": "^2.13.1",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.4",
"lodash": "^4.17.2",
"mocha": "^3.4.2",
"nock": "^9.0.13",
"rewire": "^2.5.2",
"sinon": "^2.3.2",
"snyk": "^1.33.0"
},
"snyk": true
}