forked from morkai/h5.modbus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1 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
{
"name": "h5.modbus",
"version": "0.1.0",
"description": "Implementation of the Modbus TCP/ASCII/RTU master for node.js.",
"keywords": ["h5", "modbus", "master", "tcp", "udp", "rtu", "ascii", "serialport"],
"license": "MIT",
"homepage": "https://github.com/morkai/h5.modbus",
"author": {
"name": "Łukasz Walukiewicz",
"email": "[email protected]",
"url": "http://lukasz.walukiewicz.eu/"
},
"bugs": "https://github.com/morkai/h5.modbus/issues",
"repository": {
"type": "git",
"url": "http://github.com/morkai/h5.modbus.git"
},
"engine": ["node ~0.10.5"],
"main": "./lib/index",
"dependencies": {
"h5.buffers": "~0.1.1"
},
"devDependencies": {
"should": "~1.2.2",
"sinon": "~1.7.2",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.7",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-jshint": "~0.4.3",
"grunt-simple-mocha": "~0.4.0",
"grunt-istanbul": "~0.2.1",
"grunt-env": "~0.4.0"
},
"scripts": {
"test": "grunt --force"
}
}