-
Notifications
You must be signed in to change notification settings - Fork 179
/
package.json
65 lines (65 loc) · 1.57 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jsmodbus",
"version": "4.0.12",
"description": "Implementation for the Serial/TCP Modbus protocol.",
"author": "Stefan Poeter <stefan.poeter@cloud-automation.de>",
"main": "./dist/modbus.js",
"types": "./dist/modbus.d.ts",
"bin": {
"jsmodbus": "./bin/jsmodbus.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Cloud-Automation/node-modbus"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"crc": "3.4.0",
"debug": "^3.1.0"
},
"devDependencies": {
"@types/crc": "^3.4.0",
"@types/debug": "^4.1.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.10",
"@types/serialport": "^7.0.4",
"commander": "^3.0.2",
"mocha": "^3.3.0",
"nyc": "^13.1.0",
"serialport": "^7.1.5",
"sinon": "2.2.0",
"tslint": "^5.20.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.5.2"
},
"scripts": {
"test": "npm run lint && npm run build && npx mocha test/*.test.js",
"build": "npx tsc",
"lint": "npx tslint -c tslint.json 'src/**/*.ts'",
"lint:fix": "npx tslint -c tslint.json 'src/**/*.ts' --fix",
"watch": "npm run lint && npm run build && npx mocha --watch test/*.test.js",
"prepublishOnly": "npm run test",
"prepare": "npm run build",
"cov": "nyc mocha test/*.test.js"
},
"license": "MIT",
"keywords": [
"client",
"server",
"serial",
"port",
"modbus",
"tcp"
],
"readmeFilename": "README.md",
"directories": {
"test": "test",
"example": "examples"
},
"files": [
"bin/**/*",
"dist/**/*"
]
}