Files
homebridge/package.json
Nick Farina a3c0df1c7c Plugin support
- Homebridge is now designed to be `npm install`d globally and
executed via "homebridge" script
  - Remove all specific accessories/platforms except for an example
  - New internal structure and "cli"
2015-10-18 16:34:21 -07:00

37 lines
748 B
JSON

{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "0.2.0",
"scripts": {
"dev": "DEBUG=* ./bin/homebridge -P example-plugins/ || true"
},
"author": {
"name": "Nick Farina"
},
"repository": {
"type": "git",
"url": "git://github.com/nfarina/homebridge.git"
},
"bugs": {
"url": "http://github.com/nfarina/homebridge/issues"
},
"licenses": [
{
"type": "ISC",
"url": "http://github.com/nfarina/homebridge/blob/master/LICENSE"
}
],
"bin": {
"homebridge": "bin/homebridge"
},
"engines": {
"node": ">= 0.12.0"
},
"preferGlobal": true,
"dependencies": {
"commander": "2.8.1",
"hap-nodejs": "0.0.2",
"semver": "5.0.3"
}
}