-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 992 Bytes
/
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
{
"name": "node-red-contrib-openpixelcontrol",
"version": "0.0.1",
"description": "Node-RED node to control LED-Strips and more via the openpixelcontrol protocol (server not included)",
"main": "index.js",
"scripts": {
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sbarwe/node-red-contrib-openpixelcontrol.git"
},
"keywords": [
"ws28xx",
"ws2812",
"ws2811",
"opc",
"openpixelcontrol",
"client",
"stream",
"pixel",
"LED",
"node-red"
],
"node-red": {
"nodes": {
"opcclient": "opc/opc-client.js",
"opcmix": "opc/opc-mix.js"
}
},
"author": "Sebastian Barwe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sbarwe/node-red-contrib-openpixelcontrol/issues"
},
"homepage": "https://github.com/sbarwe/node-red-contrib-openpixelcontrol#readme",
"dependencies": {
"chroma-js": "^1.3.3",
"openpixelcontrol-stream": "^0.1.2"
}
}