forked from mikejac/node-red-contrib-google-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.46 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
{
"name": "node-red-contrib-google-smarthome",
"version": "0.4.2",
"description": "Lets you control Node-Red via Google Assistant or the Google Home App",
"main": "google-smarthome.js",
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikejac/node-red-contrib-google-smarthome.git"
},
"keywords": [
"google",
"smarthome",
"assistant",
"iot",
"node-red"
],
"node-red": {
"version": ">=1.3.0",
"nodes": {
"google-smarthome": "google-smarthome.js",
"device": "devices/device.js"
}
},
"engines": {
"node": ">=10.0.0"
},
"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.18.x",
"helmet": "^6.0.1",
"stoppable": "^1.1.x",
"morgan": "^1.10.x",
"cors": "^2.8.x",
"google-auth-library": "^8.7.0",
"googleapis": "^110.0.x",
"uid-generator": "^2.0.x",
"ip-range-check": "^0.2.x",
"@gravitysoftware/dnssd": "^0.5.x"
},
"devDependencies": {
"mocha": "^10.2.0",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0"
},
"maintainers": [
{
"name": "mikejac",
"email": "[email protected]"
}
]
}