-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1017 Bytes
/
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
{
"name": "homebridge-tedee",
"version": "0.4.1",
"author": "Lukas Rögner",
"homepage": "https://github.com/lukasroegner/homebridge-tedee",
"description": "Homebridge plugin for the smart lock Tedee.",
"license": "MIT",
"keywords": [
"homebrige",
"tedee",
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lukasroegner/homebridge-tedee.git"
},
"devDependencies": {
"@types/node": "^10",
"typescript": "3.8.3",
"rimraf": "3.0.2",
"hap-nodejs": "0.5.0",
"@types/qs": "6.5.1"
},
"dependencies": {
"homebridge-framework": "1.0.6",
"axios": "0.21.1",
"qs": "6.10.1"
},
"bugs": {
"url": "https://github.com/lukasroegner/homebridge-tedee/issues"
},
"main": "dist/index.js",
"scripts": {
"debug": "rimraf dist/ && tsc && homebridge -D -U . -P .",
"build": "rimraf dist/ && tsc",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=10",
"homebridge": ">=0.2"
}
}