-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
48
49
50
51
52
53
54
55
{
"name": "eda-modbus-bridge",
"version": "2.9.1",
"description": "An HTTP/MQTT bridge for Enervent ventilation units with EDA automation",
"main": "eda-modbus-bridge.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"test": "jest",
"check-prettier": "prettier --check eda-modbus-bridge.ts app/ tests/",
"prettier": "prettier --write eda-modbus-bridge.ts app/ tests/",
"lint": "eslint eda-modbus-bridge.ts 'app/**/*.ts'"
},
"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": ">= 18"
},
"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",
"set-interval-async": "^3.0.3",
"winston": "^3.10.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.47.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^2.5.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
}
}