-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "homebridge-securitysystem",
"displayName": "Homebridge Security System",
"version": "9.0.0",
"description": "Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.",
"main": "src/index.js",
"scripts": {
"debug": "homebridge -I -D",
"test": "exit 0",
"build": "exit 0"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"homekit",
"security system",
"alarm",
"category-security"
],
"repository": {
"type": "git",
"url": "git://github.com/MiguelRipoll23/homebridge-securitysystem.git"
},
"author": "MiguelRipoll23",
"license": "MIT",
"bugs": {
"url": "http://github.com/MiguelRipoll23/homebridge-securitysystem/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/MiguelRipoll23"
},
{
"type": "paypal",
"url": "https://paypal.me/miguelripoll23"
}
],
"engines": {
"node": "^18.20.4 || ^20.15.1",
"homebridge": "^1.6.0 || ^2.0.0-beta.0"
},
"dependencies": {
"express": "^4.17.1",
"node-fetch": "^2.6.7",
"node-persist": "^4.0.1"
},
"devDependencies": {
"eslint": "^9.0.0"
}
}