forked from garethflowers/homebridge-texecom-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"author": {
"name": "Gareth Flowers",
"url": "https://garethflowers.dev"
},
"bugs": {
"url": "https://github.com/garethflowers/homebridge-texecom-connect/issues"
},
"description": "A Homebridge plugin to integrate with Texecom Connect SmartCom.",
"devDependencies": {
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.11.0",
"homebridge": "^1.2.2",
"nodemon": "^2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"displayName": "Homebridge Texecom Connect",
"engines": {
"homebridge": ">=1.0.0",
"node": ">=10.17.0"
},
"keywords": [
"homebridge",
"homebridge-plugin",
"texecom",
"texecom-connect",
"security-system"
],
"license": "MIT",
"main": "dist/index.js",
"name": "homebridge-texecom-connect",
"repository": {
"type": "git",
"url": "git://github.com/garethflowers/homebridge-texecom-connect.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"prebuild": "rimraf ./dist",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"version": "0.0.3"
}