-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.47 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
{
"name": "node-red-contrib-homee",
"version": "0.12.2",
"description": "create virtual devices for homee and access api with node-red",
"scripts": {
"start": "node node_modules/node-red/red.js -v -u .",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --exit \"test/**/*.spec.js\""
},
"keywords": [
"node-red",
"homee"
],
"author": "Stefan Himpler <[email protected]> (https://himpler.com)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"homee-api": "^0.24.0",
"ws": "^7.3.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-html": "^6.1.0",
"eslint-plugin-import": "^2.22.1",
"node-red": "^3.1.3",
"node-red-node-test-helper": "^0.3.3"
},
"node-red": {
"nodes": {
"homee": "nodes/homee.js",
"homeeApi": "nodes/homee-api.js",
"homeeLog": "nodes/homee-log.js",
"virtualHomee": "nodes/virtual-homee.js",
"homeeDevice": "nodes/homee-device.js"
}
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stfnhmplr/node-red-contrib-homee.git"
},
"bugs": {
"url": "https://github.com/stfnhmplr/homee-api/issues"
}
}