mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-16 02:18:31 -07:00
5b730575e4
Co-authored-by: Koenkk <Koenkk@users.noreply.github.com>
107 lines
2.8 KiB
JSON
107 lines
2.8 KiB
JSON
{
|
|
"name": "zigbee2mqtt",
|
|
"version": "1.24.0-dev",
|
|
"description": "Zigbee to MQTT bridge using Zigbee-herdsman",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Koenkk/zigbee2mqtt.git"
|
|
},
|
|
"engines": {
|
|
"node": "^10 || ^12 || ^14 || ^15 || ^16"
|
|
},
|
|
"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.10.0",
|
|
"bind-decorator": "^1.0.11",
|
|
"connect-gzip-static": "^2.1.1",
|
|
"core-js": "^3.21.1",
|
|
"debounce": "^1.2.1",
|
|
"deep-object-diff": "^1.1.7",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"finalhandler": "^1.1.2",
|
|
"git-last-commit": "^1.0.1",
|
|
"humanize-duration": "^3.27.1",
|
|
"js-yaml": "^4.1.0",
|
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
"mkdir-recursive": "^0.4.0",
|
|
"moment": "^2.29.1",
|
|
"mqtt": "4.3.6",
|
|
"object-assign-deep": "^0.4.0",
|
|
"rimraf": "^3.0.2",
|
|
"semver": "^7.3.5",
|
|
"source-map-support": "^0.5.21",
|
|
"uri-js": "^4.4.1",
|
|
"winston": "^3.6.0",
|
|
"winston-syslog": "^2.5.0",
|
|
"winston-transport": "^4.5.0",
|
|
"ws": "^8.5.0",
|
|
"zigbee-herdsman": "0.14.20",
|
|
"zigbee-herdsman-converters": "14.0.452",
|
|
"zigbee2mqtt-frontend": "0.6.79"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.5",
|
|
"@babel/plugin-proposal-decorators": "^7.17.2",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@types/debounce": "^1.2.1",
|
|
"@types/finalhandler": "^1.1.1",
|
|
"@types/humanize-duration": "^3.27.1",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/object-assign-deep": "^0.4.0",
|
|
"@types/rimraf": "^3.0.2",
|
|
"@types/ws": "^8.5.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"babel-jest": "^27.5.1",
|
|
"eslint": "^8.11.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
"jest": "^27.5.1",
|
|
"tmp": "^0.2.1",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"jest": {
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"collectCoverageFrom": [
|
|
"lib/**/*.js",
|
|
"lib/**/*.ts"
|
|
]
|
|
},
|
|
"bin": {
|
|
"zigbee2mqtt": "cli.js"
|
|
}
|
|
}
|