-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
97 lines (97 loc) · 2.05 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
94
95
96
97
{
"name": "node-red-contrib-heater-controller",
"version": "3.0.2",
"contributors": [],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"lodash": "~4.17.21",
"ws": "^7.4.6"
},
"deprecated": false,
"description": "A dashboard ui interface node for controlling a heater.",
"homepage": "https://github.com/SergiuToporjinschi/node-red-contrib-heater-controller#readme",
"scripts": {
"start": "nodemon %USERPROFILE%/AppData/Roaming/npm/node_modules/node-red/red.js",
"test": "mocha",
"test-cov": "nyc npm run test",
"test-dev": "nodemon --exec \"mocha\""
},
"node-red": {
"nodes": {
"ui_heater_controller": "nodes/heater/heater-controller.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergiuToporjinschi/node-red-contrib-heater-controller.git"
},
"keywords": [
"node-red",
"dashboard",
"heater",
"controller",
"thermostat"
],
"author": "Sergiu Toporjinschi",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/SergiuToporjinschi/node-red-contrib-heater-controller/issues"
},
"files": [
"nodes/**/*.*"
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.20.0",
"eslint-plugin-es5": "^1.5.0",
"http-shutdown": "^1.2.2",
"lodash": "~4.17.21",
"mocha": "^8.2.1",
"mocha-param": "^2.0.1",
"nodemon": "*",
"nyc": "^15.1.0",
"should": "^8.4.0",
"should-sinon": "*",
"sinon": "^9.2.4",
"websocket": "^1.0.33"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
".vscode"
],
"verbose": true,
"watch": [
"./nodes",
"./spec",
"package.json"
],
"nodeArgs": "",
"ext": "js json md html css"
},
"nyc": {
"exclude": [
"spec/**"
],
"reporter": [
"lcov",
"html"
]
},
"mocha": {
"diff": true,
"extension": [
"js"
],
"slow": 1500,
"timeout": 20000,
"recursive": true,
"spec": [
"spec/*.spec.js"
]
}
}