-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.2 KB
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
{
"name": "@csllc/cs-modbus-cli",
"version": "2.0.1",
"description": "Command line utilities based on cs-modbus",
"keywords": [
"modbus",
"master",
"tcp",
"udp",
"rtu",
"ascii",
"serialport"
],
"license": "MIT",
"homepage": "https://github.com/csllc/cs-modbus-cli",
"bugs": "https://github.com/csllc/cs-modbus-cli/issues",
"repository": {
"type": "git",
"url": "http://github.com/csllc/cs-modbus-cli.git"
},
"engine": [
"node ^12.0.0"
],
"main": "index.js",
"bin": {
"mb": "mb.js"
},
"scripts": {
"check": "eslint",
"test": "mocha"
},
"dependencies": {
"@csllc/cs-canbus-universal": "^0.2.2",
"@csllc/cs-mb-socketcand": "^2.0.1",
"@csllc/cs-modbus": "^3.2.0",
"@csllc/j1939": "^1.1.1",
"can-usb-com": "^5.0.1",
"chalk": "^3.0.0",
"deepmerge": "^4.2.2",
"minimist": "^1.2.5",
"serialport": "^10.4.0",
"socket.io-client": "^2.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"chai": "^4.2.0",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.1.0",
"prettier": "^3.2.5",
"should": "^13.2.3",
"sinon": "^9.0.1"
}
}