-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 936 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": "modbus-rest",
"version": "1.0.3",
"description": "Modbus REST interface",
"main": "lib/server.js",
"bin": {
"modbus-rest": "./bin/modbus-rest.js"
},
"scripts": {
"start": "node ./bin/modbus-rest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pakerfeldt/node-modbus-rest.git"
},
"keywords": [
"modbus",
"rest",
"http",
"server"
],
"author": "Patrik Åkerfeldt <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pakerfeldt/node-modbus-rest/issues"
},
"homepage": "https://github.com/pakerfeldt/node-modbus-rest#readme",
"dependencies": {
"commander": "^2.9.0",
"express": "^4.13.3",
"body-parser": "^1.5.12",
"h5.buffers": "~0.1.1",
"h5.modbus": "github:morkai/h5.modbus#8eb063d6f00a07ba9b20076f037ed4cf1eea1d66",
"modbus-serial": "^1.3.2",
"serialport": "^2.0.5"
}
}