-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 985 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
{
"name": "node-red-contrib-nanodmx",
"version": "0.0.2",
"description": "Node Red node for the DMX4ALL NanoDMX USB interface - adapted and simplified from node-dmx package https://www.npmjs.com/package/dmx. Requires the serialport module.",
"main": "nanodmx.js",
"dependencies": {
"serialport": "^10.5.0",
"@serialport/bindings-cpp": "^10.5.0"
},
"keywords": [
"node-red",
"dmx",
"serialport"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sschuste/node-red-contrib-nanodmx.git"
},
"author": {
"name": "Stefan Schustereit",
"email": "[email protected]"
},
"license": "MIT",
"node-red": {
"nodes": {
"dmx4all": "nanodmx.js"
}
},
"bugs": {
"url": "https://github.com/sschuste/node-red-contrib-nanodmx/issues"
},
"homepage": "https://github.com/sschuste/node-red-contrib-nanodmx#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}