UNPKG

node-red-contrib-hs100

Version:

Node red module for controlling HS100 and HS110 devices.

97 lines (96 loc) 2.44 kB
{ "name": "node-red-contrib-hs100", "version": "1.1.0", "description": "Node red module for controlling HS100 and HS110 devices.", "main": "index.js", "keywords": [ "node-red", "tp-link", "tplink", "hs100" ], "dependencies": { "fx-hs100-api": "^0.3.0" }, "devDependencies": { "@hapi/eslint-config-hapi": "13.0.2", "@hapi/eslint-plugin-hapi": "4.3.6", "babel-eslint": "10.1.0", "chai": "^4.3.6", "eslint": "^8.11.0", "husky": "^7.0.4", "lint-staged": "^12.3.7", "lodash": "^4.17.21", "markdown-to-html": "0.0.13", "mocha": "^9.2.2", "node-red-contrib-mock-node": "^0.5.3", "npm-check-updates": "^12.5.4", "nyc": "^15.1.0", "prettier": "^2.6.0", "release-it": "^14.14.3" }, "directories": { "test": "tests" }, "scripts": { "test": "nyc --reporter=html node_modules/.bin/mocha -R spec ./tests/test.js", "update-dependencies": "./node_modules/.bin/ncu -u && npm install", "lint": "eslint ." }, "author": "@biddster", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/biddster/node-red-contrib-hs100.git" }, "node-red": { "nodes": { "hs100": "index.js" } }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "eslintConfig": { "extends": "@hapi/eslint-config-hapi", "parser": "babel-eslint", "parserOptions": { "ecmaVersion": 2020, "sourceType": "script" }, "overrides": [ { "files": [ "*.js" ], "rules": { "@hapi/hapi/scope-start": "off", "comma-dangle": "off", "brace-style": "off", "strict": "off" } } ] }, "prettier": { "singleQuote": true, "tabWidth": 4, "printWidth": 96 }, "nyc": { "exclude": "tests/**" }, "lint-staged": { "*.js": [ "prettier --write", "eslint", "git add" ], "*.{md,html,json}": [ "prettier --write", "git add" ] } }