-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
71 lines (71 loc) · 1.72 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
64
65
66
67
68
69
70
71
{
"name": "node-red-contrib-google-smarthome",
"version": "0.4.14",
"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": ">=2.0.0",
"nodes": {
"google-smarthome": "google-smarthome.js",
"google-mgmt": "google-mgmt.js",
"device": "devices/device.js"
}
},
"engines": {
"node": ">=14.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": {
"@gravitysoftware/dnssd": "^0.5.x",
"cors": "^2.8.x",
"express": "^4.21.x",
"google-auth-library": "^9.14.2",
"googleapis": "^144.0.x",
"helmet": "^8.0.0",
"https": "^1.0.x",
"ip-range-check": "^0.2.x",
"morgan": "^1.10.x",
"stoppable": "^1.1.x",
"uid-generator": "^2.0.x"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^47.0.2",
"globals": "^15.12.0",
"mocha": "^10.8.2",
"node-red": "^4.0.5",
"node-red-node-test-helper": "^0.3.4"
},
"optionalDependencies": {
"fsevents": "*"
},
"maintainers": [
{
"name": "mikejac",
"email": "michael@visbyjacobsen.dk"
}
]
}