forked from itavero/homebridge-z2m
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.31 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
{
"displayName": "Homebridge Zigbee2MQTT",
"name": "homebridge-z2m",
"version": "1.2.0",
"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": "paypal",
"url": "https://paypal.me/arnom/EUR"
}
],
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage && eslint --max-warnings=0 '**/*.ts'",
"coverage": "jest --coverage && open coverage/lcov-report/index.html",
"watch:test": "jest --watch",
"lint": "eslint '**/*.ts' --fix --max-warnings=0",
"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"
},
"keywords": [
"homebridge-plugin",
"zigbee2mqtt",
"zigbee",
"mqtt",
"xiaomi",
"aqara",
"philips",
"hue",
"ikea",
"tradfri",
"homekit",
"tuya",
"lonsonho",
"osram",
"innr",
"gledopto"
],
"dependencies": {
"color-convert": "^2.0.1",
"mqtt": "^4.2.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@release-it/keep-a-changelog": "^2.2.2",
"@types/color-convert": "^2.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^15.0.1",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"homebridge": "^1.3.1",
"jest": "^26.6.3",
"jest-chain": "^1.1.5",
"jest-mock-extended": "^1.0.10",
"jest-sonar": "^0.2.11",
"jest-when": "^3.0.1",
"nodemon": "^2.0.7",
"release-it": "^14.2.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}