forked from DeanCording/node-red-contrib-comfort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 981 Bytes
/
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
{
"name": "node-red-contrib-comfort",
"version": "1.2.0",
"description": "A Node Red node to calculate the thermal comfort level of an environment using ASHRAE Standard 55",
"dependencies": {},
"author": {
"name": "Dean Cording",
"email": "[email protected]"
},
"license": "GPL-2.0+",
"keywords": [
"node-red",
"ASHRAE",
"temperature",
"humidity",
"comfort"
],
"bugs": {
"url": "https://github.com/DeanCording/node-red-contrib-comfort/issues"
},
"homepage": "https://github.com/DeanCording/node-red-contrib-comfort",
"repository": {
"type": "git",
"url": "https://github.com/DeanCording/node-red-contrib-comfort.git"
},
"node-red": {
"nodes": {
"comfort": "comfort.js"
}
},
"devDependencies": {
"eslint": "^7.2.0",
"prettier": "^2.0.5"
},
"scripts": {
"format": "prettier --write *.js",
"lint": "eslint *.js",
"test": "echo \"Error: no test specified\" && exit"
}
}