-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1023 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
41
42
{
"name": "node-red-contrib-gree-hvac",
"version": "0.0.0-development",
"description": "A Node-RED integration for controlling Gree smart air conditioners",
"author": "Igor Starovierov <igor.decler@gmail.com>",
"license": "MIT",
"keywords": [
"node-red",
"gree",
"hvac"
],
"node-red": {
"nodes": {
"gree-hvac": "gree-hvac/gree-hvac.js",
"gree-hvac-config": "gree-hvac/gree-hvac-config.js"
}
},
"scripts": {
"lint": "eslint ./",
"nd": "node-red -u sandbox",
"watch": "npm-watch nd"
},
"dependencies": {
"gree-hvac-client": "^2.2.0"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsdoc": "^44.1.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-watch": "^0.13.0",
"prettier": "^2.8.8",
"semantic-release": "^21.0.2"
},
"repository": {
"type": "git",
"url": "git@github.com:inwaar/node-red-contrib-gree-hvac.git"
},
"watch": {
"nd": "gree-hvac/**/*.*"
}
}