-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.23 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
{
"name": "node-red-contrib-lab",
"version": "0.0.1",
"description": "Nodes to interact with laboratory equipment (Multimeter UNI-T UT803, Power Supply Hanmatek HM310P, Electronic Load XY-FZ35)",
"main": "none",
"scripts": {
"test": "xo",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hobbyquaker/node-red-contrib-lab.git"
},
"keywords": [
"node-red",
"labratory",
"multimeter",
"power",
"supply",
"electronic",
"load",
"ut803",
"hm310p",
"xy-fz35"
],
"author": "Sebastian.Raff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hobbyquaker/node-red-contrib-lab/issues"
},
"homepage": "https://github.com/hobbyquaker/node-red-contrib-lab#readme",
"devDependencies": {
"xo": "^0.32.1"
},
"node-red": {
"nodes": {
"lab-fz35": "nodes/lab-fz35.js",
"lab-hm310p": "nodes/lab-hm310p.js",
"lab-ut803": "nodes/lab-ut803.js"
}
},
"xo": {
"space": 4,
"rules": {
"spaced-comment": 0,
"capitalized-comments": 0,
"unicorn/prevent-abbreviations": "warn"
}
},
"dependencies": {
"modbus-serial": "^8.0.0",
"serialport": "^9.0.0"
}
}