UNPKG

hap-homematic

Version:

provides a homekit bridge to the ccu

78 lines 1.62 kB
{ "name": "hap-homematic", "version": "0.0.63", "description": "provides a homekit bridge to the ccu", "license": "MIT", "repository": { "type": "git", "url": "git://github.com/thkl/hap-homematic.git" }, "keywords": [ "HomeKit", "HomeMatic", "CCU" ], "engines": { "node": ">=8.11.0" }, "dependencies": { "binrpc": "3.3.1", "chalk": "^4.0.0", "commander": "^5.1.0", "fakegato-history": "^0.5.6", "formidable": "^1.2.2", "hap-nodejs": "^0.5.7", "homematic-xmlrpc": "1.0.2", "sockjs": "^0.3.20", "moment": "2.29.0" }, "husky": { "hooks": { "pre-commit": "npm test", "pre-push": "npm test" } }, "scripts": { "start": "node index.js || true", "dev": "node index.js -D || true", "devall": "DEBUG=* node index.js -D || true", "test": "mocha", "update": "mkdir /tmp/hap-homematic-cache;cd /usr/local/addons/hap-homematic;npm i --cache /tmp/hap-homematic-cache hap-homematic@latest;rm -R /tmp/hap-homematic-cache", "restart": "/etc/config/rc.d/hap-homematic restart", "lint": "standard", "preversion": "npm run test", "prebuild": "npm --no-git-tag-version version patch", "version": "", "postversion": "git push && git push --tags" }, "devDependencies": { "mocha": "^7.0.1", "expect.js": "0.3.1", "husky": "^4.2.5" }, "mocha": { "bail": true, "reporter": "spec", "recursive": true }, "standard": { "ignore": [ "/lib/configurationsrv/html/*" ], "env": [ "commonjs", "node", "mocha" ] }, "files": [ "lib/", "etc/", "README.md", "CHANGELOG.md", "LICENSE", "index.js", "package.json", ".nobackup" ] }