-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "node-modbus",
"version": "4.3.1",
"description": "Sum of implementations for the Serial/TCP Modbus protocol.",
"author": "Klaus Landsdorf <klaus.landsdorf@bianco-royal.de>",
"main": "./node-modbus/modbus.js",
"repository": {
"type": "git",
"url": "https://github.com/biancode/node-modbus"
},
"bugs": {
"url": "https://github.com/biancode/node-modbus/issues"
},
"engines": {
"node": "6.x || 8.x"
},
"dependencies": {
"bluebird": "^3.4.6",
"crc": "^3.4.4",
"net": "^1.0.2",
"serialport": "^6.0.4",
"stampit": "^2.1.2",
"stampit-event-bus": "^0.1.1",
"stampit-log": "^0.3.0",
"stampit-state-machine": "^0.2.1"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-clean": "^0.3.2",
"gulp-htmlmin": "^3.0.0",
"gulp-jsdoc3": "^1.0.1",
"gulp-replace": "^0.6.1",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"pump": "^1.0.2",
"sinon": "^1.17.6",
"standard": "^10.0.3",
"standard-version": "^4.2.0"
},
"scripts": {
"test": "standard --fix && mocha test/* --reporter dot",
"build": "standard --fix && gulp clean && gulp publish",
"prepublish": "standard --fix && npm run build && npm test",
"release": "standard-version"
},
"license": "MIT",
"keywords": [
"client",
"server",
"serial",
"port",
"modbus",
"tcp"
],
"readmeFilename": "README.md",
"files": [
"docs",
"examples",
"node-modbus"
],
"directories": {
"example": "examples",
"test": "test"
},
"standard": {
"ignore": [
"node_modules/",
"examples/",
"node-modbus/",
"docs"
]
}
}