UNPKG

@zandor300/jsmodbus

Version:

Implementation for the Serial/TCP Modbus protocol.

73 lines (72 loc) 1.85 kB
{ "name": "@zandor300/jsmodbus", "version": "4.5.0", "description": "Implementation for the Serial/TCP Modbus protocol.", "author": "Zandor Smith <info@zsinfo.nl>", "private": false, "main": "./dist/modbus.js", "types": "./dist/modbus.d.ts", "bin": { "jsmodbus": "bin/jsmodbus.js" }, "repository": { "type": "git", "url": "https://git.zsinfo.nl/Zandor300/node-modbus" }, "engines": { "node": ">=20.0.0" }, "dependencies": { "crc": "4.3.2", "debug": "^4.0.0" }, "devDependencies": { "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/github": "12.0.2", "@semantic-release/gitlab": "13.2.9", "@semantic-release/npm": "13.1.2", "@types/crc": "4.0.0", "@types/debug": "4.1.12", "@types/mocha": "10.0.10", "@types/node": "22.19.2", "commander": "3.0.2", "mocha": "3.5.3", "nyc": "13.3.0", "serialport": "13.0.0", "sinon": "2.4.1", "tslint": "6.1.3", "tslint-config-standard": "9.0.0", "typescript": "5.9.3" }, "peerDependencies": { "serialport": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0" }, "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", "cov": "nyc mocha test/*.test.js", "semantic-release": "semantic-release" }, "license": "MIT", "keywords": [ "client", "server", "serial", "port", "modbus", "tcp" ], "readmeFilename": "README.md", "directories": { "test": "test", "example": "examples" }, "files": [ "bin/**/*", "dist/**/*" ] }