2019-09-01 19:25:53 +00:00
|
|
|
{
|
|
|
|
"name": "homebridge-automation",
|
|
|
|
"version": "1.0.0",
|
2019-09-08 17:12:20 +00:00
|
|
|
"description": "Homebridge plugin for supervised home learning.",
|
2019-09-01 19:25:53 +00:00
|
|
|
"main": "bin/index.js",
|
|
|
|
"scripts": {
|
2019-09-07 23:23:42 +00:00
|
|
|
"build": "npx eslint **/*.ts&&tsc",
|
2019-09-01 19:25:53 +00:00
|
|
|
"prepublishOnly": "npm run build"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "ssh://git@watsonb8.ddns.net:2122/home/homebridge-automation.git"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"homebridge": ">=0.4.21",
|
|
|
|
"node": ">=7.6.0"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"homebridge-plugin",
|
|
|
|
"homebridge",
|
|
|
|
"machine learning"
|
|
|
|
],
|
|
|
|
"author": "Brandon Watson",
|
|
|
|
"license": "ISC",
|
2019-09-03 01:39:08 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@types/bonjour": "^3.5.5",
|
|
|
|
"@types/inflection": "^1.5.28",
|
2019-09-22 19:07:39 +00:00
|
|
|
"@types/knex": "^0.16.1",
|
2019-09-03 01:39:08 +00:00
|
|
|
"@types/request-promise": "^4.1.44",
|
|
|
|
"@types/request-promise-native": "^1.0.16",
|
2019-09-22 19:07:39 +00:00
|
|
|
"@types/sqlite3": "^3.1.5",
|
2019-09-03 01:39:08 +00:00
|
|
|
"bonjour": "^3.5.0",
|
|
|
|
"decamelize": "^3.2.0",
|
|
|
|
"inflection": "^1.12.0",
|
2019-09-22 19:07:39 +00:00
|
|
|
"knex": "^0.19.4",
|
2019-09-08 17:12:20 +00:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2019-09-03 01:39:08 +00:00
|
|
|
"request": "^2.88.0",
|
|
|
|
"request-promise-native": "^1.0.7",
|
2019-09-07 23:23:42 +00:00
|
|
|
"source-map-support": "^0.5.13",
|
2019-09-22 19:07:39 +00:00
|
|
|
"sqlite3": "^4.1.0",
|
2019-09-07 23:23:42 +00:00
|
|
|
"tsyringe": "^3.3.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@typescript-eslint/eslint-plugin": "^2.1.0",
|
|
|
|
"@typescript-eslint/parser": "^2.1.0",
|
|
|
|
"eslint": "^6.3.0",
|
|
|
|
"typescript": "^3.6.2"
|
2019-09-03 01:39:08 +00:00
|
|
|
}
|
2019-09-08 17:12:20 +00:00
|
|
|
}
|