update package

This commit is contained in:
Luis Riegger 2021-05-08 18:53:18 +02:00
parent c2050afa21
commit 06c2483c57
4 changed files with 6444 additions and 7 deletions

1
.gitignore vendored
View File

@ -72,4 +72,3 @@ testem.log
# System Files
.DS_Store
Thumbs.db
package-lock.json

View File

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2020 Luis Riegger
Copyright (c) 2021 Luis Riegger
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

6418
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "homebridge-kobold",
"version": "0.8.4",
"version": "1.0.0",
"description": "A Vorwerk Kobold vacuum robot plugin for homebridge.",
"license": "MIT",
"keywords": [
@ -9,8 +9,14 @@
"kobold"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
"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",
"build": "rimraf ./dist && tsc"
},
"author": {
"name": "Luis R.",
@ -26,10 +32,24 @@
"type": "git",
"url": "git://github.com/himbeles/homebridge-kobold.git"
},
"bugs": {
"url": "https://github.com/himbeles/homebridge-kobold/issues"
},
"dependencies": {
"colors": "^1.4.0",
"debug": "^4.1.1",
"node-kobold-control": ">=0.4.2",
"node-kobold-control": ">=0.5.0",
"uuid": "^3.3.2"
},
"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",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
}
}