-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 983 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
{
"name": "node-red-contrib-victron-vedirect-usb",
"version": "0.1.5",
"description": "Access the Victron equipment with a USB VE.Direct cable",
"main": "index.js",
"scripts": {
"test": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dirkjanfaber/node-red-contrib-victron-vedirect-usb.git"
},
"keywords": [
"node-red",
"victron",
"vedirect"
],
"node-red": {
"nodes": {
"victron-vedirect-usb": "src/nodes/vedirect-usb.js"
},
"version": ">=3.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"author": "Dirk-Jan Faber <[email protected]>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dirkjanfaber/node-red-contrib-victron-vedirect-usb/issues"
},
"homepage": "https://github.com/dirkjanfaber/node-red-contrib-victron-vedirect-usb#readme",
"dependencies": {
"serialport": "~10.5.0",
"@serialport/parser-delimiter": "^10.5.0"
}
}