-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.2 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
{
"private": true,
"displayName": "hihomekit"
"name": "homebridge-hihomekit",
"version": "1.1.4",
"description": "Websocket based Loxone plugin for homebridge (https://github.com/nfarina/homebridge)",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hihipto/homebridge-hihomekit.git"
},
"keywords": [
"Loxone",
"homebridge-plugin",
"HomeKit",
"iOS"
],
"author": "hihipto",
"license": "MIT",
"bugs": {
"url": "https://github.com/hihipto/homebridge-hihomekit/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"node-lox-ws-api": "^0.4.5",
"request": "^2.88.2",
"ws": "^3.3.3"
},
"devDependencies": {
"@types/node": "^14.10.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"homebridge": "^1.2.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}