UNPKG

n8n-nodes-hubitat

Version:

n8n nodes to integrate with Hubitat smart home platform

85 lines (84 loc) 2.38 kB
{ "name": "n8n-nodes-hubitat", "version": "0.1.0", "description": "n8n nodes to integrate with Hubitat smart home platform", "keywords": [ "n8n", "n8n-node", "n8n-community-node-package", "hubitat", "home automation", "smart home" ], "license": "MIT", "homepage": "https://n8n.io", "author": { "name": "Sylvain BOILY", "email": "sylvainboilydroid@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/sboily/n8n-nodes-hubitat.git" }, "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint src/nodes src/credentials", "lintfix": "eslint src/nodes src/credentials --fix", "test": "jest --config jest.config.js", "test:watch": "jest --watch --config jest.config.js", "test:coverage": "jest --coverage --config jest.config.js", "test:unit": "jest --testPathPattern=test/unit --config jest.config.js", "test:integration": "jest --testPathPattern=test/integration --config jest.config.js", "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js src/nodes src/credentials" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/HubitatApi.credentials.js" ], "nodes": [ "dist/nodes/Hubitat/Hubitat.node.js", "dist/nodes/Hubitat/HubitatTrigger.node.js" ] }, "devDependencies": { "@types/express": "^4.17.6", "@types/jest": "^29.5.1", "@types/node": "^18.13.0", "@types/request": "^2.48.8", "@types/request-promise-native": "^1.0.18", "@types/supertest": "^2.0.12", "@typescript-eslint/eslint-plugin": "^5.52.0", "@typescript-eslint/parser": "^5.52.0", "eslint": "^8.34.0", "eslint-plugin-jest": "^27.2.1", "gulp": "^4.0.2", "husky": "^8.0.3", "jest": "^29.5.0", "jest-mock-extended": "^3.0.4", "lint-staged": "^13.2.2", "nock": "^13.3.1", "n8n-workflow": "1.70.0", "prettier": "^2.8.8", "supertest": "^6.3.3", "ts-jest": "^29.1.0", "typescript": "~4.9.5" }, "dependencies": { "axios": "^1.3.4", "request": "^2.88.2", "request-promise-native": "^1.0.9" }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] } }