forked from itsfrosty/homebridge-c4-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "homebridge-c4-plugin",
"version": "2.0.0",
"description": "Homebridge plugin for control4",
"main": "dist/dynamic-platform.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"homebridge": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keithpre/homebridge-c4-plugin"
},
"files": [
"LICENSE",
"config.schema.json",
"dist"
],
"keywords": [
"control4",
"homebridge-plugin",
"homebridge-c4-plugin"
],
"author": "keithpre",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/keithpre/homebridge-c4-plugin/issues"
},
"homepage": "https://github.com/keithpre/homebridge-c4-plugin",
"devDependencies": {
"polling-to-event": "^2.0.2",
"@types/node": "16.11.7",
"typescript": "^5.0.4",
"rimraf": "^5.0.0",
"homebridge": "^1.6.1"
}
}