UNPKG

homebridge-dht

Version:

Homebridge accessory plugin that support's connecting a dht22 Temperature/Humidity Sensor to a Raspberry PI.

79 lines 2.11 kB
{ "name": "homebridge-dht", "version": "0.2.0", "description": "Homebridge accessory plugin that support's connecting a dht22 Temperature/Humidity Sensor to a Raspberry PI.", "main": "src/index.js", "scripts": { "lint": "eslint --max-warnings=0 .", "lint:fix": "eslint --fix --max-warnings=0 .", "watch": "nodemon", "test": "jest --detectOpenHandles", "test-coverage": "jest --coverage", "document": "./gh-md-toc --insert README.md;./gh-md-toc --insert Build.md" }, "repository": { "type": "git", "url": "git+https://github.com/NorthernMan54/homebridge-dht.git" }, "keywords": [ "nodemcu", "dht22", "homebridge", "homebridge-plugin" ], "engines": { "homebridge": "^1.6.0 || ^2.0.0-beta.0", "node": "^18.20.4 || ^20.15.1 || ^22.0.0" }, "dependencies": { "debug": ">2.6.9", "fakegato-history": "^0.6.5", "mcuiot-logger": ">0.0.6", "moment": ">2.20.1", "node-dht-sensor": ">0.0.34" }, "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" }, "author": "NorthernMan54", "license": "Apache-2.0", "bugs": { "url": "https://github.com/NorthernMan54/homebridge-dht/issues" }, "homepage": "https://github.com/NorthernMan54/homebridge-dht#readme", "nodemonConfig": { "watch": [ "src" ], "ext": "js,cjs,mjs,json", "ignore": [ "**/*.spec.js", "**/*.test.js" ], "exec": "DEBUG=yamaha*,Yamaha*- ~/npm/bin/homebridge -U ./test/hbConfig -I -T -D -P .", "signal": "SIGTERM", "env": { "NODE_OPTIONS": "--trace-warnings" } }, "jest": { "testEnvironment": "node", "modulePathIgnorePatterns": [], "coverageReporters": [ "lcov" ], "collectCoverageFrom": [ "src/**", "!src/accessories/**", "!src/lib/definitions/generate-definitions.ts", "!src/lib/definitions/generator-configuration.ts", "!src/test-utils" ] } }