forked from evandcoleman/homebridge-theater-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 833 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
{
"name": "homebridge-theater-mode",
"version": "1.0.2",
"description": "A homebridge plugin for reacting to Apple TV play/pause events.",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "npm run clean && tsc",
"clean": "rimraf dist"
},
"keywords": [
"homebridge-plugin",
"appletv"
],
"repository": {
"type": "git",
"url": "git://github.com/edc1591/homebridge-theater-mode.git"
},
"bugs": {
"url": "http://github.com/edc1591/homebridge-theater-mode/issues"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"devDependencies": {
"@types/mdns": "0.0.32",
"@types/node": "^9.4.6",
"rimraf": "^2.6.2",
"typescript": "^2.7.2"
},
"dependencies": {
"node-appletv-x": "^1.0.16"
}
}