-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
93 lines (93 loc) · 3.03 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
90
91
92
93
{
"name": "node-red-contrib-self-healing",
"version": "0.9.5",
"description": "SHEN: Self-healing extensions for Node-RED.",
"keywords": [
"node-red",
"self-healing",
"fault-tolerance",
"dependability"
],
"homepage": "http://jpdias.me/node-red-contrib-self-healing/",
"bugs": "https://github.com/jpdias/node-red-contrib-self-healing/issues",
"repository": {
"type": "git",
"url": "https://github.com/jpdias/node-red-contrib-self-healing.git"
},
"scripts": {
"start": "node-red",
"test": "mocha \"test/**/*_spec.js\"",
"test-accept": "mocha \"test-acceptance/**/*_spec.js\"",
"test-coverage": "nyc mocha \"test/**/*_spec.js\"",
"test-pbt": "mocha \"test-pbt/**/*_spec.js\"",
"mocha": "mocha",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --write --ignore-path .gitignore .",
"format-check": "prettier --check --ignore-path .gitignore .",
"mutate-init": "stryker init",
"mutate": "stryker run",
"selenium-server": "docker-compose up",
"selenium-test": "docker exec -it nodered npm run test-accept"
},
"node-red": {
"version": ">=2.0.0",
"nodes": {
"flow-control": "flow-control/flow-control.js",
"replication-voter": "replication-voter/replication-voter.js",
"compensate": "compensate/compensate.js",
"kalman-noise-filter": "kalman-noise-filter/kalman.js",
"threshold-check": "threshold-check/threshold-check.js",
"redundancy-manager": "redundancy/redundancy.js",
"debounce": "debounce/debounce.js",
"network-aware": "network-aware/network-aware.js",
"heartbeat": "heartbeat/heartbeat.js",
"timing": "timing-check/timing.js",
"readings-watcher": "readings-watcher/readings-watcher.js",
"balancing": "balancing/balancing.js",
"checkpoint": "checkpoint/checkpoint.js",
"resource-monitor": "resource-monitor/resource-monitor.js",
"device-registry": "device-registry/device-registry.js",
"action-audit": "action-audit/action-audit.js",
"http-aware": "http-aware/http-aware.js"
}
},
"main": "node_modules/node-red/red/red.js",
"author": "JP Dias",
"license": "MIT",
"dependencies": {
"ajv": "^8.0.0",
"arpping": "^4.0.0",
"asn1": "^0.2.4",
"child_process": "^1.0.2",
"dotenv": "^16.0.0",
"kalmanjs": "^1.1.0",
"network-list": "^1.1.5",
"os": "^0.1.1",
"oui": "^12.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"@stryker-mutator/core": "^6.0.0",
"@stryker-mutator/mocha-runner": "^6.0.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jsverify": "^0.8.4",
"lint-staged": "^13.0.0",
"mocha": "^10.0.0",
"node-red": "^3.0.0",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"selenium-webdriver": "^4.0.0-alpha.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,html,yml,json}": "prettier --write"
}
}