node-red-contrib-hubitat
Version:
Node Red module for Hubitat API
72 lines (71 loc) • 2.27 kB
JSON
{
"name": "node-red-contrib-hubitat",
"version": "1.10.1",
"description": "Node Red module for Hubitat API",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fblackburn1/node-red-contrib-hubitat.git"
},
"author": "Francois Blackburn",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"node-fetch": "^2.7.0",
"ws": "^8.18.1"
},
"keywords": [
"node-red",
"hubitat"
],
"bugs": {
"url": "https://github.com/fblackburn1/node-red-contrib-hubitat/issues"
},
"homepage": "https://github.com/fblackburn1/node-red-contrib-hubitat#readme",
"node-red": {
"version": ">=1.0.0",
"nodes": {
"command": "nodes/command.js",
"config": "nodes/config.js",
"device": "nodes/device.js",
"event": "nodes/event.js",
"hsm": "nodes/hsm.js",
"hsm-setter": "nodes/hsm-setter.js",
"location": "nodes/location.js",
"mode": "nodes/mode.js",
"mode-setter": "nodes/mode-setter.js",
"request": "nodes/request.js"
}
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.8",
"@types/node-fetch": "^2.6.12",
"@types/ws": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-html": "^8.1.0",
"eslint-plugin-import": "^2.31.0",
"express": "4.21.2",
"markdownlint-cli": "^0.44.0",
"mocha": "^11.1.0",
"node-red": "^4.0.9",
"node-red-dev": "^0.1.6",
"node-red-node-test-helper": "^0.3.4",
"should": "^13.2.3",
"stoppable": "^1.1.0"
},
"scripts": {
"linter": "markdownlint *.md && npx eslint nodes/**/*.js nodes/**/*.html test/nodes/*.js",
"test": "mocha test/*",
"bump:prepare": "git checkout main && git pull origin main",
"bump:patch": "npm run-script bump:prepare && npm version patch && npm run-script bump:complete",
"bump:minor": "npm run-script bump:prepare && npm version minor && npm run-script bump:complete",
"bump:major": "npm run-script bump:prepare && npm version major && npm run-script bump:complete",
"bump:complete": "git push origin && git push origin --tags"
}
}