-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
executable file
·89 lines (89 loc) · 2.04 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "node-red-contrib-deconz",
"version": "2.3.14",
"description": "deCONZ connectivity nodes for node-red",
"keywords": [
"deconz",
"drezden",
"conbee",
"node-red"
],
"homepage": "https://github.com/deconz-community/node-red-contrib-deconz",
"bugs": {
"url": "https://github.com/deconz-community/node-red-contrib-deconz/issues/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deconz-community/node-red-contrib-deconz.git"
},
"license": "GPL-3.0",
"author": {
"name": "Zehir",
"email": "[email protected]",
"url": "https://github.com/Zehir"
},
"maintainers": [
{
"name": "Zehir",
"email": "[email protected]",
"url": "https://github.com/Zehir"
}
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Zehir"
},
"files": [
"deconz.*",
"/nodes/",
"/lib/",
"/icons/*.png",
"/resources/",
"/examples/",
"/src/migration",
"/src/runtime"
],
"scripts": {
"build": "grunt build",
"dev": "grunt watch",
"test": "mocha",
"release": "pnpm run test && pnpm run build && changeset publish"
},
"packageManager": "[email protected]",
"dependencies": {
"@node-red/util": "^4.0.0",
"compare-versions": "^6.1.0",
"dot-prop": "^6.0.1",
"got": "^11.8.6",
"multiple-select": "^1.7.0",
"set-interval-async": "^3.0.3",
"ws": "^8.17.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.6",
"grunt": "^1.6.1",
"grunt-contrib-uglify": "^5.2.2",
"grunt-contrib-watch": "^1.1.0",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.4.0",
"nyc": "^17.0.0",
"should": "^13.2.3",
"taze": "^0.13.8"
},
"node-red": {
"version": ">=1.2.9",
"nodes": {
"backend": "deconz.js",
"api": "nodes/api.js",
"in": "nodes/in.js",
"get": "nodes/get.js",
"out": "nodes/out.js",
"event": "nodes/event.js",
"battery": "nodes/battery.js",
"server": "nodes/server.js"
}
},
"engines": {
"node": ">=14"
}
}