forked from jhurliman/homebridge-frontpoint
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "homebridge-node-alarm-dot-com",
"version": "1.10.1",
"description": "Alarm.com plugin for Homebridge using Node.js",
"author": {
"name": "Mike Kormendy",
"email": "mike@somethinginteractive.com"
},
"license": "MIT",
"keywords": [
"node-only",
"security",
"alarm",
"alarm.com",
"alarm-dot-com",
"alarmdotcom",
"homekit",
"homebridge",
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/node-alarm-dot-com/homebridge-node-alarm-dot-com.git"
},
"homepage": "https://github.com/node-alarm-dot-com/homebridge-node-alarm-dot-com#readme",
"bugs": {
"url": "https://github.com/node-alarm-dot-com/homebridge-node-alarm-dot-com/issues"
},
"main": "dist/index.js",
"files": [
"LICENSE",
"README.md",
"dist/**/*",
"config.schema.json",
"package.json"
],
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint src/**.ts",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"postpublish": "npm run clean",
"start": "ts-node src/index.ts",
"start-dev": "homebridge -I -D",
"watch": "npm run build && npm link && tsc && homebridge -I -D",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=16.0.0",
"homebridge": ">=1.4.0"
},
"dependencies": {
"node-alarm-dot-com": "2.1.1",
"polling-to-event": "^2.1.0"
},
"devDependencies": {
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"homebridge": "^1.6.1",
"homebridge-config-ui-x": "latest",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}