forked from fblackburn1/node-red-contrib-hubitat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "node-red-contrib-hubitat",
"version": "1.6.2",
"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.19.0",
"cookie-parser": "^1.4.5",
"events": "^3.3.0",
"node-fetch": "^2.6.1",
"ws": "^6.2.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": {
"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"
}
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/events": "^3.0.0",
"@types/node-fetch": "^2.5.8",
"@types/ws": "^7.4.0",
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"express": "4.17.1",
"markdownlint-cli": "^0.27.1",
"mocha": "^8.3.1",
"node-red": "^1.2.9",
"node-red-node-test-helper": "^0.2.7",
"should": "^13.2.3",
"sinon": "^9.2.4",
"stoppable": "^1.1.0"
},
"scripts": {
"linter": "markdownlint *.md && npx eslint nodes/**/*.js nodes/**/*.html test/nodes/*.js",
"test": "mocha test/*",
"bump:prepare": "git checkout master && git pull origin master",
"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"
}
}