-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "@instathings/modbus2mqtt",
"version": "2.0.0",
"description": "Modbus2MQTT bridge",
"main": "index.js",
"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js index",
"test": "INTERVAL=1 ./node_modules/mocha/bin/_mocha",
"lint": "./node_modules/eslint/bin/eslint.js ."
},
"engines": {
"node": "^18 || ^20"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@instathings/modbus-herdsman-converters": "2.0.7",
"fast-deep-equal": "^3.1.1",
"git-last-commit": "^1.0.1",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"modbus-serial": "^8.0.11",
"moment": "^2.24.0",
"mqtt": "^3.0.0",
"mkdir-recursive": "^0.4.0",
"object-assign-deep": "^0.4.0",
"rimraf": "^3.0.2",
"semver": "^7.2.1",
"winston": "^3.10.0"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "^10.2.0",
"nodemon": "^3.0.1",
"sinon": "^15.2.0"
}
}