-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "eda-modbus-bridge",
"version": "2.9.0",
"description": "An HTTP/MQTT bridge for Enervent ventilation units with EDA automation",
"main": "eda-modbus-bridge.mjs",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"check-prettier": "prettier --check eda-modbus-bridge.mjs app/ tests/",
"prettier": "prettier --write eda-modbus-bridge.mjs app/ tests/",
"lint": "eslint eda-modbus-bridge.mjs 'app/**/*.mjs'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jalle19/eda-modbus-bridge.git"
},
"author": "Sam Stenvall <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/Jalle19/eda-modbus-bridge/issues"
},
"homepage": "https://github.com/Jalle19/eda-modbus-bridge#readme",
"engines": {
"node": ">= 14"
},
"dependencies": {
"async-mutex": "^0.3.1",
"express": "^4.21.2",
"express-winston": "^4.2.0",
"modbus-serial": "^8.0.11",
"mqtt": "^5.3.4",
"serialport": "^11.0.1",
"winston": "^3.10.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^27.4.7",
"prettier": "^2.5.1"
}
}