forked from monteslu/node-red-contrib-gpio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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-gpio",
"version": "0.8.0",
"description": "A set of node-red nodes for using johnny-five and IO plugins",
"main": "gpio.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:monteslu/node-red-contrib-gpio.git"
},
"keywords": [
"gpio",
"io",
"firmata",
"node-red",
"johnny-five",
"mqtt",
"raspberry pi",
"arduino",
"galileo",
"edison",
"beaglebone"
],
"author": "Luis Montes",
"license": "MIT",
"bugs": {
"url": "https://github.com/monteslu/node-red-contrib-gpio/issues"
},
"homepage": "https://github.com/monteslu/node-red-contrib-gpio",
"dependencies": {
"firmata": "^0.11.3",
"johnny-five": "^0.9.44",
"lodash": "^4.11.1",
"meshblu": "^1.33.1",
"mqtt-serial": "^0.6.0",
"serialport": "^3.0.0",
"skynet-serial": "^1.3.0",
"udp-serial": "^0.2.0"
},
"optionalDependencies": {
"mqtt": "^1.1.0"
},
"node-red": {
"nodes": {
"gpio": "gpio.js"
}
}
}