Files
homebridge/package.json
Nick Farina dbedf7fe01 Convert to ES5, add web server
* No compilation step
 * Beginnings of web interface
 * Simple express server; React-based frontend
 * CommonJS style across codebase; auto-converts to RequireJS for browser
 * Using diffsync for realtime UI
 * "Provider" -> "Plugin"
 * Plugins expose one or more Providers
2015-08-11 22:27:59 -07:00

40 lines
892 B
JSON

{
"name": "homebridge",
"description": "HomeKit support for the impatient",
"version": "0.0.0",
"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",
"diffsync": "^2.1.2",
"express": "^4.13.3",
"express-interceptor": "^1.1.1",
"express-jsxtransform": "^3.0.3",
"hap-nodejs": "git+https://github.com/nfarina/HAP-NodeJS#3b1eaa8",
"react-tools": "^0.13.3",
"semver": "^4.3.6",
"socket.io": "^1.3.6"
}
}