UNPKG

@zandor300/jsmodbus

Version:

Implementation for the Serial/TCP Modbus protocol.

73 lines (72 loc) 1.84 kB
{ "name": "@zandor300/jsmodbus", "version": "4.3.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": ">=6.0.0" }, "dependencies": { "crc": "4.3.2", "debug": "^3.1.0" }, "devDependencies": { "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/github": "11.0.2", "@semantic-release/gitlab": "13.2.5", "@semantic-release/npm": "12.0.1", "@types/crc": "^4.0.0", "@types/debug": "^4.1.4", "@types/mocha": "^5.2.7", "@types/node": "^22.0.0", "commander": "^3.0.2", "mocha": "^3.3.0", "nyc": "^13.1.0", "serialport": "12.0.0", "sinon": "2.4.1", "tslint": "^5.20.0", "tslint-config-standard": "^8.0.1", "typescript": "^5.0.0" }, "peerDependencies": { "serialport": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.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/**/*" ] }