-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1003 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1003 Bytes
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
{
"name": "hm2mqtt",
"version": "1.6.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:addon": "cd ha_addon && ./test_env.sh",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "prettier --check \"src/**/*.ts\"",
"lint:fix": "prettier --write \"src/**/*.ts\"",
"bump-version": "ts-node bump-version.ts",
"release": "./release.sh"
},
"dependencies": {
"aedes": "^0.51.3",
"dotenv": "^16.3.1",
"mqtt": "^5.3.0",
"pino": "^9.7.0",
"pino-pretty": "^10.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.8.2"
}
}