UNPKG

@softwaredevelopment/node-red-contrib-bodhi-device-thermostat

Version:

Thermostat device for bodhi node red

67 lines 2.01 kB
{ "name": "@softwaredevelopment/node-red-contrib-bodhi-device-thermostat", "license": "ISC", "version": "0.0.11", "description": "Thermostat device for bodhi node red", "main": "index.js", "private": false, "publishConfig": { "scope": "@softwaredevelopment", "registry": "https://registry.npmjs.org/" }, "scripts": { "dev": "nodemon --exec npm run build", "build": "rimraf build/* && tsc -p . && npm run copyassets", "build:production": "rimraf build/* && tsc --sourceMap false -p . && npm run copyassets", "copyassets": "copyfiles -f src/nodes/**/*.html build/src/nodes && copyfiles -f src/nodes/icons/* build/src/nodes/icons", "lint": "eslint \"src/**\"", "format": "prettier --write ." }, "keywords": [ "node-red", "device", "bodhi", "thermostat" ], "node-red": { "nodes": { "Thermostat": "build/src/nodes/local.device.node.js", "Remote Thermostat": "build/src/nodes/remote.device.node.js" } }, "files": [ "build/src" ], "repository": { "type": "git", "url": "git@github.com:https://github.com/Software-Development-LLC/node-red-contrib-bodhi-device-thermostat.git" }, "contributors": [ "Hassan Ali <hassan.as@bodhi.software>" ], "devDependencies": { "@types/node": "^16.4.12", "@types/node-red": "^1.1.1", "@typescript-eslint/eslint-plugin": "^6.7.2", "@typescript-eslint/parser": "^6.7.2", "eslint": "^8.49.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "^2.28.1", "eslint-plugin-prettier": "^5.0.0", "husky": "^8.0.3", "lint-staged": "^14.0.1", "nodemon": "^2.0.12", "prettier": "^3.0.3", "source-map-support": "^0.5.19", "ts-node": "^10.1.0", "typescript": "^4.3.5" }, "dependencies": { "copyfiles": "^2.4.1", "node-red": "^2.0.5", "node-red-contrib-bodhi-device-base": "file:src/lib", "rimraf": "^3.0.2", "winston": "^3.10.0" } }