forked from bluephlame/homebridge-gpio-garagedoor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 790 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
{
"name": "homebridge-gpio-garagedoor",
"description": "Raspberry Pi GPIO based Garage Door plugin for Homebridge",
"version": "0.2.3",
"repository": {
"type": "git",
"url": "git://github.com/kraigm/homebridge-gpio-garagedoor.git"
},
"license": "ISC",
"preferGlobal": true,
"keywords": [
"homebridge-plugin",
"homebridge",
"garagedoor",
"raspberry",
"pi",
"gpio"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.5"
},
"dependencies": {
"bluebird": "^3.5.5",
"onoff": "^4.1.2"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/onoff": "^3.2.1",
"typescript": "^1.8"
},
"scripts": {
"prepublish": "node node_modules/typescript/bin/tsc --module commonjs index.ts -t ES6"
}
}