homebridge-rtl
Version:
RTL_433 based sensor for Homebridge
67 lines • 1.63 kB
JSON
{
"name": "homebridge-rtl",
"version": "0.1.0",
"description": "RTL_433 based sensor for Homebridge",
"main": "src/sensor.js",
"scripts": {
"lint": "eslint --max-warnings=0 .",
"lint:fix": "eslint --fix --max-warnings=0 .",
"watch": "nodemon",
"test": "jest --detectOpenHandles",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NorthernMan54/homebridge-rtl"
},
"keywords": [
"homebridge-plugin",
"rtl_433",
"temperature",
"humidity",
"pressure",
"sensor",
"motion"
],
"author": "northernman54",
"license": "MIT",
"bugs": {
"url": "https://github.com/northernman54/homebridge-rtl/issues"
},
"engines": {
"homebridge": "^1.6.0 || ^2.0.0-beta.0",
"node": "^18.20.4 || ^20.15.1 || ^22.0.0"
},
"homepage": "https://github.com/northernman54/homebridge-rtl#readme",
"dependencies": {
"debug": "^4.3.7",
"fakegato-history": "^0.6.5",
"lodash": "^4.17.20",
"mcuiot-logger": "0.0.12",
"moment": "^2.18.1",
"nodemon": "^3.1.7",
"semver": "^7.6.3",
"homebridge-lib": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^8.57.1",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-jest": "^28.8.3",
"globals": "^15.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "js",
"ignore": [],
"exec": "~/npm/bin/homebridge -U ./test/hbConfig -T -D -P .",
"signal": "SIGTERM",
"env": {
"NODE_OPTIONS": "--trace-warnings"
}
}
}