generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
111 lines (111 loc) · 3.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"displayName": "Homebridge dingz Plugin",
"name": "homebridge-dingz",
"version": "3.0.0",
"author": "johannrichard",
"description": "Homebridge Plugin for dingz & myStrom Devices. Implements some (but not all, due to API limitations) functions of a [dingz](https://dingz.ch) Smart Home Device.",
"license": "Apache-2.0",
"homepage": "https://github.com/johannrichard/homebridge-dingz#readme",
"repository": {
"type": "git",
"url": "git://github.com/johannrichard/homebridge-dingz.git"
},
"bugs": {
"url": "https://github.com/johannrichard/homebridge-dingz/issues"
},
"engines": {
"node": ">=14.0.0",
"homebridge": ">1.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"postinstall": "yarn husky install",
"prepack": "yarn pinst --disable",
"postpack": "yarn pinst --enable",
"watch": "yarn dlx nodemon",
"build": "yarn rimraf ./dist && tsc",
"depcheck": "depcheck",
"prepare": "yarn run lint && yarn run build && yarn run depcheck",
"changelog": "changelog --exclude ci,chore",
"debug": "yarn run lint && yarn run build && yarn dlx homebridge -I -D"
},
"keywords": [
"homebridge-plugin",
"dingz",
"smarthome",
"iot"
],
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"axios-retry": "^4.5.0",
"body-parser": "^1.20.3",
"chalk": "4.1.2",
"cockatiel": "^3.2.1",
"express": "^4.21.1",
"fakegato-history": "^0.6.5",
"intervals-for-humans": "^1.0.4",
"is-valid-host": "^1.0.1",
"limit-number": "^3.0.0",
"qs": "^6.13.0",
"semver": "^7.6.3",
"simple-color-converter": "^2.1.13"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/node": "^20.17.5",
"@types/qs": "^6.9.16",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"depcheck": "^1.4.7",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"generate-changelog": "^1.8.0",
"homebridge": "^1.8.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3"
},
"lint-staged": {
"**/*.+(js|jsx|css|less|scss|ts|tsx|md)": [
"prettier --write",
"git add"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"depcheck": {
"ignores": [
"@commitlint/*",
"eslint*",
"semantic-release",
"@semantic-release/*"
]
},
"packageManager": "[email protected]"
}