forked from monteslu/node-red-contrib-gpio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 1.96 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
90
{
"name": "node-red-contrib-johnny-five",
"version": "1.0.0-beta.2",
"description": "A set of node-red nodes for using johnny-five and IO plugins",
"main": "gpio.js",
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "[email protected]:rdmtc/node-red-contrib-johnny-five.git"
},
"keywords": [
"gpio",
"io",
"firmata",
"node-red",
"johnny-five",
"mqtt",
"raspberry pi",
"arduino",
"galileo",
"edison",
"beaglebone",
"bluetooth",
"ble",
"ble-io"
],
"author": "Sebastian Raff <[email protected]>",
"license": "MIT",
"contributors": [
"Luis Montes"
],
"bugs": {
"url": "https://github.com/rdmtc/node-red-contrib-johnny-five/issues"
},
"homepage": "https://github.com/rdmtc/node-red-contrib-johnny-five",
"dependencies": {
"firmata": "^2.2.0",
"johnny-five": "^2.0.0",
"lodash": "^4.17.19",
"mqtt": "^4.1.0",
"mqtt-serial": "^0.6.0",
"node-led": "^0.3.1",
"serialport": "^9.0.0",
"socket.io-serial": "^0.4.0",
"udp-serial": "^0.2.0"
},
"node-red": {
"nodes": {
"j5-platform": "nodes/j5-platform.js",
"j5-gpio-in": "nodes/j5-gpio-in.js",
"j5-gpio-out": "nodes/j5-gpio-out.js",
"j5-led": "nodes/j5-led.js",
"j5-function": "nodes/j5-function.js"
}
},
"devDependencies": {
"eslint-plugin-html": "^6.0.2",
"xo": "^0.32.1"
},
"scripts": {
"test": "xo",
"lintfix": "xo --fix"
},
"xo": {
"space": 4,
"plugin": "html",
"global": [
"$",
"RED"
],
"extensions": [
"js",
"html"
],
"rules": {
"no-template-curly-in-string": "warn",
"camelcase": "warn",
"capitalized-comments": 0,
"spaced-comment": 0,
"unicorn/catch-error-name": 0,
"valid-jsdoc": 0,
"eslint-comments/no-unused-disable": 0,
"promise/prefer-await-to-then": 0,
"prefer-object-spread": 0
},
"ignore": []
}
}