-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 951 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
{
"name": "modbus-rtu-master",
"version": "0.3.0",
"description": "The master controller of modbus-rtu protocol",
"author": "Nanchao Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ruff-drivers/modbus-rtu-master.git"
},
"bugs": {
"url": "https://github.com/ruff-drivers/modbus-rtu-master/issues"
},
"homepage": "https://github.com/ruff-drivers/modbus-rtu-master",
"keywords": [
"ruff",
"modbus",
"rtu"
],
"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"
}
}
}