-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.29 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
70
71
72
73
74
{
"name": "node-red-contrib-hubitat",
"version": "1.9.0",
"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.1",
"cookie-parser": "^1.4.6",
"events": "^3.3.0",
"node-fetch": "^2.7.0",
"ws": "^7.5.9"
},
"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.2",
"@types/cookie-parser": "^1.4.2",
"@types/events": "^3.0.0",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^7.4.7",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.25.4",
"express": "4.18.2",
"markdownlint-cli": "^0.35.0",
"mocha": "^10.1.0",
"node-red": "^3.0.2",
"node-red-dev": "^0.1.5",
"node-red-node-test-helper": "^0.3.0",
"should": "^13.2.3",
"sinon": "^15.0.1",
"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"
}
}