jsmodbus
Version:
Implementation for the Serial/TCP Modbus protocol.
44 lines (43 loc) • 929 B
JSON
{
"name": "jsmodbus",
"version": "3.1.5",
"description": "Implementation for the Serial/TCP Modbus protocol.",
"author": "Stefan Poeter <stefan.poeter@cloud-automation.de>",
"main": "./src/modbus.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": {
"mocha": "^3.3.0",
"nyc": "^13.1.0",
"sinon": "2.2.0",
"standard": "^8.5.0"
},
"scripts": {
"test": "standard && mocha test/*.test.js",
"watch": "standard && mocha --watch test/*.test.js",
"cov": "nyc mocha test/*.test.js"
},
"license": "MIT",
"keywords": [
"client",
"server",
"serial",
"port",
"modbus",
"tcp"
],
"readmeFilename": "README.md",
"directories": {
"test": "test",
"example": "examples"
}
}