forked from timofei-iatsenko/node-modbus-rtu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "modbus-rtu",
"version": "0.2.1",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"lint": "eslint .",
"test": "cross-env NODE_ENV=test tape -r babel-register tests/**/*.spec.js | tap-spec",
"ci": "npm run lint && npm run test",
"prepublishOnly": "npm run build"
},
"description": "modbus-rtu implementation for node.js",
"keywords": [
"modbus-rtu",
"modbus",
"modbus master"
],
"main": "lib/index.js",
"homepage": "https://github.com/thekip/node-modbus-rtu",
"repository": {
"type": "git",
"url": "[email protected]:thekip/node-modbus-rtu.git"
},
"author": {
"name": "Tim Yatsenko",
"url": "https://github.com/thekip"
},
"bugs": {
"url": "ttps://github.com/thekip/node-modbus-rtu/issues"
},
"engines": {
"node": ">=5"
},
"dependencies": {
"bluebird": "^3.3.0",
"bufferput": "0.1.x",
"crc": "3.3.0",
"lodash": "^4.3.0"
},
"peerDependencies": {
"serialport": ">=2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"cross-env": "^2.0.0",
"eslint": "^4.3.0",
"rimraf": "^2.6.1",
"sinon": "^1.17.5",
"tap-spec": "^4.1.1",
"tape": "^4.7.0"
}
}