forked from mrjackyliang/homebridge-adt-pulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.34 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
{
"name": "homebridge-adt-pulse",
"displayName": "Homebridge ADT Pulse",
"version": "2.1.1",
"description": "Homebridge security system platform for ADT Pulse",
"main": "index.js",
"private": false,
"scripts": {
"start": "homebridge --plugin-path $(pwd)",
"start:debug": "homebridge --debug --plugin-path $(pwd)"
},
"repository": {
"type": "git",
"url": "git://github.com/mrjackyliang/homebridge-adt-pulse.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/mrjackyliang"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"homekit",
"adt",
"adt-pulse",
"icontrol",
"security",
"security-system"
],
"author": "Jacky Liang",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrjackyliang/homebridge-adt-pulse/issues"
},
"files": [
"*.js",
"*.schema.json"
],
"homepage": "https://github.com/mrjackyliang/homebridge-adt-pulse#readme",
"engines": {
"homebridge": ">=0.4.50",
"node": ">=14.16.0"
},
"dependencies": {
"cheerio": "1.0.0-rc.5",
"internet-available": "^1.0.0",
"lodash": "^4.17.20",
"q": "^1.5.1",
"request": "^2.88.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"typescript": "^3.9.7"
}
}