-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 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
{
"name": "node-red-contrib-modbus-api",
"version": "0.2.2",
"description": "Modbus-Server API nodes.",
"main": "src/index.js",
"scripts": {
"test": "mocha \"test/**/*spec.js\"",
"coverage": "istanbul cover _mocha $(find ./ -name \"*.spec.js\" -not -path \"./node_modules/*\")",
"lint": "eslint \"src/**/*.js\"",
"lint-fix": "eslint --fix \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/w4tsn/node-red-contrib-modbus-api.git"
},
"keywords": [
"node-red",
"modbus",
"api",
"server",
"tcp"
],
"author": "Alexander Wellbrock <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/w4tsn/node-red-contrib-modbus-api/issues"
},
"homepage": "https://github.com/w4tsn/node-red-contrib-modbus-api#README",
"node-red": {
"nodes": {
"modbus in": "src/nodes/modbusIn.js",
"modbus out": "src/nodes/modbusOut.js",
"modbus server": "src/nodes/modbusServer.js"
}
},
"devDependencies": {
"eslint": "^6.7.1",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"node-red": "^1.0.3",
"node-red-node-test-helper": "^0.2.3",
"should": "^13.2.3"
},
"dependencies": {
"modbus-serial": "^7.7.3"
}
}