-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
109 lines (109 loc) · 2.47 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"displayName": "Homebridge Konnected",
"name": "homebridge-konnected",
"version": "1.2.1",
"description": "Homebridge plugin for Konnected security alarm systems",
"author": "mkormendy",
"license": "MIT",
"homepage": "https://github.com/konnected-io/homebridge-konnected/",
"repository": {
"type": "git",
"url": "git+https://github.com/konnected-io/homebridge-konnected.git"
},
"bugs": {
"url": "https://help.konnected.io/support/discussions/forums/32000043024"
},
"engines": {
"node": ">=12.0.0",
"homebridge": ">=1.1.1"
},
"main": "dist/index.js",
"scripts": {
"preinstall": "npm list -g homebridge || npm install -g homebridge",
"lint": "eslint src/**.ts",
"build": "rimraf ./dist && tsc",
"debug": "npm run build && npm list -g homebridge-konnected || npm link && nodemon --exitcrash",
"prepublishonly": "eslint src/**.ts && npm run build"
},
"keywords": [
"home",
"smart",
"security",
"sensors",
"switches",
"leak",
"smoke",
"motion",
"temperature",
"humidity",
"alarm",
"automation",
"alerts",
"monitoring",
"up-cycle",
"retrofit",
"wired system",
"PoE",
"zone",
"scene",
"IoT",
"DIY",
"arm",
"disarm",
"wireless",
"alarm system",
"alarm panel",
"konnected",
"konnected-io",
"homekit",
"apple",
"homebridge",
"homebridge-plugin",
"category-security"
],
"dependencies": {
"express": "^4.17.1",
"ip": "^1.1.5",
"node-fetch": "^2.6.1",
"node-ssdp": "^4.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/ip": "^1.1.0",
"@types/node": "^16.0.1",
"@types/node-fetch": "^2.5.11",
"@types/node-ssdp": "^4.0.0",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"homebridge": "^1.3.4",
"nodemon": "^2.0.9",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mkormendy"
},
{
"type": "paypal",
"url": "https://www.paypal.me/mikekormendy"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/mikekormendy"
}
]
}