-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.41 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.41 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
{
"name": "@automatacontrols/automata-thermostat",
"version": "1.0.11",
"description": "Professional-grade thermostat UI widget for Node-RED Dashboard 2.0 with comprehensive HVAC controls",
"main": "nodes/thermostat.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\"",
"lint": "eslint nodes/*.js",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AutomataControls/AutomataThermostat.git"
},
"keywords": [
"node-red",
"dashboard",
"thermostat",
"hvac",
"building-automation",
"controls",
"ui",
"widget",
"automata"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"thermostat": "nodes/thermostat.js"
}
},
"engines": {
"node": ">=14.0.0"
},
"author": {
"name": "AutomataControls",
"url": "https://github.com/AutomataControls"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AutomataControls/AutomataThermostat/issues"
},
"homepage": "https://github.com/AutomataControls/AutomataThermostat#readme",
"dependencies": {
"node-red-dashboard": "^2.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"node-red": "^3.1.0",
"node-red-node-test-helper": "^0.3.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"nodes/",
"README.md",
"LICENSE"
]
}