-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.83 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
{
"displayName": "CaddX/NetworX Homebridge Plugin",
"name": "homebridge-caddx-interlogix",
"version": "1.3.1",
"description": "A homebridge plugin for integrating the ComNav/NetworX/CaddX NX-595E network module with HomeKit",
"author": "Spyros Smparounis <nflare@gmail.com> (https://github.com/flareman)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/flareman/homebridge-caddx-interlogix.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/flareman"
},
{
"type": "paypal",
"url": "https://www.paypal.me/flareman"
}
],
"bugs": {
"url": "https://github.com/flareman/homebridge-caddx-interlogix/issues"
},
"homepage": "https://github.com/flareman/homebridge-caddx-interlogix",
"engines": {
"node": "^14.20.1 || >=16.16.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"build": "rimraf ./dist && tsc",
"watch": "npm run build && npm link && nodemon",
"prepublishOnly": "npm run lint && npm run build",
"buildlink": "npm run build && npm link",
"buildpack": "npm run build && npm link && npm shrinkwrap && npm pack"
},
"keywords": [
"homebridge-plugin",
"caddx",
"interlogix",
"comnav",
"595",
"nx595",
"nx-595",
"nx595e",
"nx-595e",
"alarm",
"security-system"
],
"devDependencies": {
"@types/node": "^14.18.31",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.13.0",
"homebridge": "^1.1.7",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"async-mutex": "^0.4.0",
"axios": "^1.1.2",
"fast-xml-parser": "^3.17.6"
}
}