generated from homebridge/homebridge-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
109 lines (109 loc) · 3.01 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
{
"displayName": "Homebridge Zigbee2MQTT",
"name": "homebridge-z2m",
"version": "1.11.0-beta.6",
"description": "Expose your Zigbee devices to HomeKit with ease, by integrating Zigbee2MQTT with Homebridge.",
"license": "Apache-2.0",
"homepage": "https://z2m.dev",
"author": {
"name": "Arno Moonen",
"url": "https://arno.dev"
},
"repository": {
"type": "git",
"url": "git://github.com/itavero/homebridge-z2m.git"
},
"bugs": {
"url": "https://github.com/itavero/homebridge-z2m/issues"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/itavero"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/arno"
},
{
"type": "paypal",
"url": "https://paypal.me/arnom/EUR"
}
],
"engines": {
"node": "^18.0.0 || ^20.0.0",
"homebridge": "^1.5.0"
},
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage && eslint --max-warnings=0 'src/**/*.ts' 'test/**/*.ts'",
"coverage": "jest --coverage && open coverage/lcov-report/index.html",
"watch:test": "jest --watch",
"lint": "eslint --max-warnings=0 'src/**/*.ts' 'test/**/*.ts'",
"lint-fix": "eslint --fix --max-warnings=0 'src/**/*.ts' 'test/**/*.ts'",
"build": "rimraf ./dist && tsc",
"start": "npm run build && npm link && homebridge -I -D",
"check-release": "release-it --dry-run -VV",
"release": "release-it",
"check-pre-release": "release-it --dry-run -VV --npm.tag=next",
"pre-release": "release-it --npm.tag=next",
"beta-release": "release-it --preRelease=beta --npm.tag=next",
"check-beta-release": "release-it --dry-run -VV --preRelease=beta --npm.tag=next",
"rc-release": "release-it --preRelease=rc --npm.tag=next",
"check-rc-release": "release-it --dry-run -VV --preRelease=rc --npm.tag=next"
},
"keywords": [
"homebridge-plugin",
"zigbee2mqtt",
"zigbee",
"mqtt",
"xiaomi",
"aqara",
"philips",
"signify",
"hue",
"ikea",
"tradfri",
"homekit",
"tuya",
"lonsonho",
"osram",
"innr",
"gledopto",
"sonoff",
"lidl"
],
"dependencies": {
"color-convert": "^2.0.1",
"mqtt": "^5.3.4",
"semver": "^7.3.2"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@release-it/keep-a-changelog": "^5.0.0",
"@types/color-convert": "^2.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^22.0.2",
"@types/semver": "^7.3.4",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sonarjs": "^1.0.4",
"globals": "^15.9.0",
"homebridge": "^1.7.0",
"jest": "^29.7.0",
"jest-chain": "^1.1.6",
"jest-each": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"jest-sonar": "^0.2.16",
"jest-when": "^3.6.0",
"nodemon": "^3.0.2",
"prettier": "^3.3.3",
"release-it": "^17.0.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.1.0"
}
}