forked from tvecera/node-red-contrib-netatmo-energy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.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
{
"name": "node-red-contrib-netatmo-energy",
"version": "0.0.3",
"description": "A node-red to interact with Netatmo thermostat",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tvecera/node-red-contrib-netatmo-energy.git"
},
"author": "Tomas Vecera",
"bugs": {
"url": "https://github.com/tvecera/node-red-contrib-netatmo-energy/issues"
},
"homepage": "https://github.com/tvecera/node-red-contrib-netatmo-energy#readme",
"scripts": {
"test": "mocha"
},
"dependencies": {
"dateformat": "^2.0.0",
"request": "^2.88.0",
"moment": "^2.22.2",
"mocha": "^5.2.0"
},
"keywords": [
"node-red",
"netatmo",
"energy"
],
"license": "Apache-2.0",
"node-red": {
"nodes": {
"netatmo-config": "src/netatmo-config.js",
"netatmo-homesdata": "src/netatmo-homesdata.js",
"netatmo-homestatus": "src/netatmo-homestatus.js",
"netatmo-setthermmode": "src/netatmo-setthermmode.js",
"netatmo-setroomthermpoint": "src/netatmo-setroomthermpoint.js"
}
}
}