-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1004 Bytes
/
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
{
"name": "modbus-serial-master",
"version": "0.1.0",
"description": "The master controller of modbus serial protocol with RTU and ASCII modes",
"author": "Nanchao Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ruff-drivers/modbus-serial-master.git"
},
"bugs": {
"url": "https://github.com/ruff-drivers/modbus-serial-master/issues"
},
"homepage": "https://github.com/ruff-drivers/modbus-serial-master",
"keywords": [
"ruff",
"modbus",
"rtu",
"ascii"
],
"main": "src/index.js",
"engines": {
"ruff": ">=1.7.0 <2.0.0",
"ruff-lite": ">=0.7.2 <1.0.0"
},
"scripts": {
"install-sdk": "rvm install --local",
"install-rap-dependencies": "rap install",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "ruff ./test/test.js"
},
"devDependencies": {
"eslint": "^3.0.1",
"ruff-standard": "^0.1.6"
},
"ruff": {
"devDependencies": {
"t": "^0.1.7"
}
}
}