forked from mikejac/node-red-contrib-google-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·63 lines (63 loc) · 1.63 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
{
"name": "node-red-contrib-google-smarthome",
"version": "0.0.57",
"description": "Lets you control Node-Red via Google Assistant or the Google Home App",
"main": "google-smarthome.js",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/mikejac/node-red-contrib-google-smarthome.git"
},
"keywords": [
"google",
"smarthome",
"assistant",
"iot",
"node-red"
],
"node-red": {
"nodes": {
"google-smarthome": "google-smarthome.js",
"light": "devices/light.js",
"outlet": "devices/outlet.js",
"camera": "devices/camera.js",
"scene": "devices/scene.js",
"shutter": "devices/shutter.js",
"thermostat": "devices/thermostat.js",
"window": "devices/window.js",
"vaccum": "devices/vacuum.js",
"fan": "devices/fan.js",
"sensor": "devices/sensor.js",
"switch": "devices/switch.js"
}
},
"author": {
"name": "Michael Jacobsen"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mikejac/node-red-contrib-google-smarthome/issues"
},
"homepage": "https://github.com/mikejac/node-red-contrib-google-smarthome#readme",
"dependencies": {
"https": "^1.0.x",
"express": "^4.17.x",
"helmet": "^4.2.0",
"stoppable": "^1.1.x",
"body-parser": "^1.19.x",
"morgan": "^1.10.x",
"cors": "^2.8.x",
"google-auth-library": "^6.1.1",
"googleapis": "^66.0.x",
"uuid-token-generator": "^1.0.x",
"util": "^0.12.x",
"path": "^0.12.x",
"node-persist": "^2.1.x"
},
"maintainers": [
{
"name": "mikejac",
"email": "[email protected]"
}
]
}