homebridge-redmond-robot
Version:
Homebridge Plugin for Redmond Robot Vacuum
61 lines (60 loc) • 1.99 kB
JSON
{
"displayName": "Homebridge Redmond Robot",
"name": "homebridge-redmond-robot",
"version": "1.1.9",
"author": "Pavel Liaukovich",
"description": "Homebridge Plugin for Redmond Robot Vacuum",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/xlinur/homebridge-redmond-robot.git"
},
"bugs": {
"url": "https://github.com/xlinur/homebridge-redmond-robot/issues"
},
"homepage": "https://github.com/xlinur/homebridge-redmond-robot#readme",
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.3.0"
},
"main": "dist/index.js",
"scripts": {
"push": "git push --follow-tags",
"push:version": "npm version patch && npm run push",
"publish:patch": "npm version patch && npm run push && npm publish",
"publish:minor": "npm version minor && npm run push && npm publish",
"publish:major": "npm version major && npm run push && npm publish",
"publish:beta": "npm version prerelease --preid beta && npm run push && npm publish --tag=beta",
"lint": "eslint src/**.ts --max-warnings=0",
"lint:fix": "eslint --fix src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"version": "auto-changelog -p -u && git add CHANGELOG.md && git push --tags",
"prepush": "npm run version"
},
"keywords": [
"homebridge-plugin",
"homebridge-redmond-robot",
"redmond",
"redmond robot",
"robot vacuum"
],
"dependencies": {
"aws-iot-device-sdk": "^2.2.6",
"aws-sdk": "^2.863.0",
"got": "^11.8.2"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"auto-changelog": "^2.2.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"
}
}