forked from tagyoureit/nodejs-poolController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.43 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "nodejs-poolcontroller",
"version": "5.3.3",
"description": "NodeJS program to read and write to the the pool equipment serial bus.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"start:capture": "node src/index.js $* --capturePackets",
"start:replay": "node src/index.js $* --suppressWrite",
"test": "snyk test && mocha ./specs/assets/config/config.json ./specs/index.spec.js --recursive ./specs --reporter spec --require ./specs/helpers/chai.js --exit",
"test:one": "mocha ./specs/assets/config/config.json --reporter spec --require ./specs/helpers/chai.js ./specs/index.spec.js --exit",
"test:one:cover": "istanbul cover _mocha -- ./specs/assets/config/config.json ./specs/index.spec.js --include-all-sources ./specs --require ./specs/helpers/chai.js --reporter spec --exit",
"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 --exit",
"test:replay": "mocha ./specs/assets/config/config.json --reporter spec --require ./specs/helpers/chai.js ./specs/index.spec.js ./misc/replay.js --exit --delay",
"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",
"prepublishOnly": "npm run snyk-protect",
"configTester": "node misc/configTester.js"
},
"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.3",
"bootstrap": "^3.4.0",
"bottlejs": "^1.7.1",
"dateformat": "^3.0.3",
"deep-diff": "^1.0.1",
"dequeue": "^1.0.5",
"events": "^3.0.0",
"express": "^4.16.4",
"getmac": "^1.4.3",
"http-auth": "^3.1.3",
"http-shutdown": "^1.2.0",
"influx": "^5.0.7",
"ip": "^1.1.5",
"jquery": "^3.2.1",
"jquery-ui-dist": "^1.12.1",
"logform": "^1.9.0",
"minimist": "^1.2.0",
"multicast-dns": "^7.0.0",
"mysql": "^2.15.0",
"node-ip": "^0.1.2",
"node-ssdp": "^3.3.0",
"promised-io": "^0.3.5",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"serialport": "^6.2.2",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"underscore": "^1.9.1",
"winston": "^2.4.3",
"winston-transport": "^4.3.0",
"yargs-parser": "^10.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"grunt": "^1.0.3",
"grunt-banner": "^0.6.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.7",
"mocha": "^5.2.0",
"nock": "^9.3.3",
"sinon": "^6.1.4",
"snyk": "^1.120.1"
},
"snyk": true
}