-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
47 lines (47 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
{
"name": "homebridge-wiz-lan",
"version": "3.2.12",
"description": "A homebridge plugin to control Wiz Lights",
"main": "dist/index.js",
"keywords": [
"homebridge-plugin",
"wiz",
"philips",
"lan"
],
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"watch": "npm run build && npm link && nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=1.3.0"
},
"author": "Kevin Pei <hello@kevinpei.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/kpsuperplane/homebridge-wiz-lan.git"
},
"devDependencies": {
"@types/jwt-decode": "^2.2.1",
"@types/node": "^14.14.6",
"homebridge": "^1.3.1",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"bugs": {
"url": "https://github.com/kpsuperplane/homebridge-wiz-lan/issues"
},
"homepage": "https://github.com/kpsuperplane/homebridge-wiz-lan#readme",
"dependencies": {
"getmac": "^5.17.0",
"internal-ip": "^6.2.0"
}
}