2017-04-17 16:07:21 +02:00
|
|
|
{
|
|
|
|
"name": "homebridge-neato",
|
2021-04-27 19:35:12 +02:00
|
|
|
"displayName": "Homebridge Neato",
|
2021-05-10 09:44:23 +02:00
|
|
|
"version": "1.0.0-beta.5",
|
2017-04-30 14:35:23 +02:00
|
|
|
"description": "A Neato vacuum robot plugin for homebridge.",
|
2017-04-17 16:07:21 +02:00
|
|
|
"license": "MIT",
|
|
|
|
"keywords": [
|
2017-04-22 22:57:09 +02:00
|
|
|
"homebridge-plugin",
|
|
|
|
"neato",
|
|
|
|
"botvac"
|
2017-04-17 16:07:21 +02:00
|
|
|
],
|
|
|
|
"engines": {
|
2021-04-27 19:35:12 +02:00
|
|
|
"node": ">=10.17.0",
|
|
|
|
"homebridge": ">=1.3.0"
|
|
|
|
},
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint src/**.ts --max-warnings=0",
|
|
|
|
"watch": "npm run build && npm link && nodemon",
|
2021-05-05 10:35:31 +02:00
|
|
|
"build": "rimraf ./dist && tsc"
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
|
|
|
"author": {
|
2019-07-14 23:35:09 +02:00
|
|
|
"name": "Arne Blumentritt",
|
|
|
|
"url2": "https://github.com/naofireblade"
|
2017-04-17 16:07:21 +02:00
|
|
|
},
|
2019-07-14 23:35:09 +02:00
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "ghulands",
|
|
|
|
"url": "https://github.com/ghulands"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Berkay",
|
|
|
|
"url": "https://github.com/btutal"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Antoine de Maleprade",
|
|
|
|
"url": "https://github.com/az0uz"
|
|
|
|
}
|
|
|
|
],
|
2017-04-17 16:07:21 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/naofireblade/homebridge-neato.git"
|
|
|
|
},
|
2021-04-27 19:35:12 +02:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/naofireblade/homebridge-neato/issues"
|
|
|
|
},
|
2017-04-17 16:07:21 +02:00
|
|
|
"dependencies": {
|
2019-09-26 08:59:35 +02:00
|
|
|
"colors": "^1.4.0",
|
2019-09-19 11:26:27 +02:00
|
|
|
"debug": "^4.1.1",
|
2021-05-04 14:01:32 +02:00
|
|
|
"node-botvac": "^0.4.2",
|
2019-04-29 02:20:48 +02:00
|
|
|
"uuid": "^3.3.2"
|
2021-04-27 19:35:12 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/node": "^14.14.31",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
|
|
"@typescript-eslint/parser": "^4.16.1",
|
|
|
|
"eslint": "^7.21.0",
|
|
|
|
"homebridge": "^1.3.1",
|
|
|
|
"nodemon": "^2.0.7",
|
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
"ts-node": "^9.1.1",
|
|
|
|
"typescript": "^4.2.2"
|
2021-05-01 20:48:12 +02:00
|
|
|
},
|
2021-05-03 15:39:10 +02:00
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "buymeacoffee",
|
|
|
|
"url": "https://buymeacoffee.com/naofireblade"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "paypal",
|
|
|
|
"url": "https://paypal.me/ArneBlumentritt"
|
|
|
|
}
|
|
|
|
]
|
2019-04-29 02:20:48 +02:00
|
|
|
}
|