-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "node-red-contrib-modbustcp",
"version": "1.2.3",
"description": "Node-RED nodes for communicating with a MODBUS TCP Server.",
"main": "modbustcp.js",
"dependencies": {
"compare-versions": "^3.3.0",
"debug": "^3.1.0",
"jsmodbus": "^3.0.0",
"node-net-reconnect": "^0.1.1"
},
"devDependencies": {
"@types/node": "^10.3.4",
"nodemon": "^1.17.5"
},
"scripts": {
"test": "echo \\\"Error: no test specified\\\" && exit 1",
"mon": "concurrently \"tsc -w\" \"nodemon --exec \"node-red\" --ext js,html\"",
"tsc": "tsc -w",
"nm": "nodemon --exec \"node-red\" --ext js,html",
"mon2": "concurrently npm:tsc npm:nm"
},
"engine": {
"node": ">=7.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Argonne-National-Laboratory/node-red-contrib-modbustcp.git"
},
"keywords": [
"node-red",
"modbus",
"modbus tcp",
"modbus client"
],
"node-red": {
"nodes": {
"modbus tcp": "modbustcp.js"
}
},
"author": "Jason D. Harper",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Argonne-National-Laboratory/node-red-contrib-modbustcp/issues"
},
"homepage": "https://github.com/Argonne-National-Laboratory/node-red-contrib-modbustcp#readme"
}