-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
56
57
58
59
{
"name": "@ljames8/mqtt-hap-hormann-garagedoor",
"displayName": "Smart Hörmann Garage Door",
"version": "0.0.1",
"description": "DIY Hormann Supramatic E3 garage door connection to MQTT + Homekit",
"main": "dist/garageDoor.js",
"scripts": {
"lint": "eslint --max-warnings=0",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run lint && npm run build",
"postpublish": "npm run clean",
"start": "node dist/run.js",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "npx --no-install lint-staged"
}
},
"lint-staged": {
"*.ts": "npm run lint"
},
"keywords": [
"mqtt",
"rs485",
"hormann",
"garage"
],
"author": "Leo James",
"license": "ISC",
"engines": {
"node": ">=18.20.3"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.7",
"prettier": "3.3.2",
"rimraf": "^5.0.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^7.13.0"
},
"dependencies": {
"@ljames8/hormann-hcp-client": "^0.1.1",
"debug": "^4.3.5",
"hap-nodejs": "^1.1.0",
"mqtt": "^5.10.1",
"typescript": "^5.4.5"
}
}