2023-06-01 06:15:24 -07:00
|
|
|
{
|
|
|
|
"name": "zigbee2mqtt",
|
2023-09-01 07:05:15 -07:00
|
|
|
"version": "1.33.0-dev",
|
2023-06-01 06:15:24 -07:00
|
|
|
"description": "Zigbee to MQTT bridge using Zigbee-herdsman",
|
|
|
|
"main": "index.js",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Koenkk/zigbee2mqtt.git"
|
|
|
|
},
|
|
|
|
"engines": {
|
2023-08-08 10:40:22 -07:00
|
|
|
"node": "^16 || ^18 || ^19 || ^20"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"xiaomi",
|
|
|
|
"tradfri",
|
|
|
|
"hue",
|
|
|
|
"bridge",
|
|
|
|
"zigbee",
|
|
|
|
"mqtt",
|
|
|
|
"cc2531"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && node index.js writehash",
|
|
|
|
"build-watch": "tsc --watch",
|
|
|
|
"eslint": "eslint lib/ --max-warnings=0",
|
|
|
|
"start": "node index.js",
|
|
|
|
"test-with-coverage": "jest test --coverage",
|
|
|
|
"test": "jest test",
|
|
|
|
"test-watch": "jest test --watch"
|
|
|
|
},
|
|
|
|
"author": "Koen Kanters",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Koenkk/zigbee2mqtt/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://koenkk.github.io/zigbee2mqtt",
|
|
|
|
"dependencies": {
|
|
|
|
"ajv": "^8.12.0",
|
|
|
|
"bind-decorator": "^1.0.11",
|
|
|
|
"connect-gzip-static": "2.1.1",
|
|
|
|
"debounce": "^1.2.1",
|
|
|
|
"deep-object-diff": "^1.1.9",
|
|
|
|
"fast-deep-equal": "^3.1.3",
|
|
|
|
"finalhandler": "^1.2.0",
|
|
|
|
"git-last-commit": "^1.0.1",
|
2023-09-23 22:42:03 -07:00
|
|
|
"humanize-duration": "^3.30.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
|
|
"jszip": "^3.10.1",
|
|
|
|
"mkdir-recursive": "^0.4.0",
|
|
|
|
"moment": "^2.29.4",
|
2023-09-10 00:28:14 -07:00
|
|
|
"mqtt": "5.0.5",
|
2023-06-01 06:15:24 -07:00
|
|
|
"object-assign-deep": "^0.4.0",
|
|
|
|
"rimraf": "^5.0.1",
|
2023-07-16 00:05:30 -07:00
|
|
|
"semver": "^7.5.4",
|
2023-06-01 06:15:24 -07:00
|
|
|
"source-map-support": "^0.5.21",
|
|
|
|
"uri-js": "^4.4.1",
|
2023-07-16 00:05:30 -07:00
|
|
|
"winston": "^3.10.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"winston-syslog": "^2.7.0",
|
|
|
|
"winston-transport": "^4.5.0",
|
2023-09-23 22:42:03 -07:00
|
|
|
"ws": "^8.14.2",
|
2023-09-17 00:00:37 -07:00
|
|
|
"zigbee-herdsman": "0.19.0",
|
2023-09-28 03:42:33 -07:00
|
|
|
"zigbee-herdsman-converters": "15.85.0",
|
2023-09-21 11:32:32 -07:00
|
|
|
"zigbee2mqtt-frontend": "0.6.136"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-16 23:46:52 -07:00
|
|
|
"@babel/core": "^7.22.20",
|
2023-06-01 06:15:24 -07:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2023-09-10 00:28:14 -07:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.22.15",
|
2023-09-16 23:46:52 -07:00
|
|
|
"@babel/preset-env": "^7.22.20",
|
2023-09-10 00:28:14 -07:00
|
|
|
"@babel/preset-typescript": "^7.22.15",
|
2023-09-23 22:42:03 -07:00
|
|
|
"@types/debounce": "^1.2.2",
|
2023-09-16 23:46:52 -07:00
|
|
|
"@types/finalhandler": "^1.2.1",
|
2023-06-01 06:15:24 -07:00
|
|
|
"@types/humanize-duration": "^3.27.1",
|
2023-09-16 23:46:52 -07:00
|
|
|
"@types/jest": "^29.5.5",
|
|
|
|
"@types/js-yaml": "^4.0.6",
|
2023-09-23 22:42:03 -07:00
|
|
|
"@types/node": "^20.6.4",
|
2023-09-10 00:28:14 -07:00
|
|
|
"@types/object-assign-deep": "^0.4.1",
|
|
|
|
"@types/readable-stream": "4.0.2",
|
2023-06-01 06:15:24 -07:00
|
|
|
"@types/rimraf": "^3.0.2",
|
2023-06-25 00:19:27 -07:00
|
|
|
"@types/ws": "8.5.4",
|
2023-09-23 22:42:03 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
|
|
|
"@typescript-eslint/parser": "^6.7.2",
|
2023-09-16 23:46:52 -07:00
|
|
|
"babel-jest": "^29.7.0",
|
2023-09-23 22:42:03 -07:00
|
|
|
"eslint": "^8.50.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2023-09-16 23:46:52 -07:00
|
|
|
"eslint-plugin-jest": "^27.4.0",
|
|
|
|
"jest": "^29.7.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"tmp": "^0.2.1",
|
2023-08-26 23:36:28 -07:00
|
|
|
"typescript": "^5.2.2"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
|
|
|
"branches": 100,
|
|
|
|
"functions": 100,
|
|
|
|
"lines": 100,
|
|
|
|
"statements": 100
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"lib/**/*.js",
|
|
|
|
"lib/**/*.ts"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"zigbee2mqtt": "cli.js"
|
|
|
|
}
|
|
|
|
}
|