mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-17 02:48:31 -07:00
a813663de5
* Support emulation of attReport Some device do not support attReport for some keys, this will emulate it. You can configure which keys that should be read when another device send a message and the configured device a bind target or in a group the message was send to. ```yaml devices: '0x0017880104259333': friendly_name: bedroom/desk_lamp retain: true debounce: 0.5 report_emulate: - brightness - color ``` Will have the brightness and color queried for example when a hue dimmer sends commands to the bulb. * Refactor polling. * Finish poll tests. * Update herdsman. * Improve test stability.
72 lines
1.5 KiB
JSON
72 lines
1.5 KiB
JSON
{
|
|
"name": "zigbee2mqtt",
|
|
"version": "1.6.0",
|
|
"description": "Zigbee to MQTT bridge using zigbee-shepherd",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Koenkk/zigbee2mqtt.git"
|
|
},
|
|
"engines": {
|
|
"node": "10"
|
|
},
|
|
"keywords": [
|
|
"xiaomi",
|
|
"tradfri",
|
|
"hue",
|
|
"bridge",
|
|
"zigbee",
|
|
"mqtt",
|
|
"cc2531"
|
|
],
|
|
"scripts": {
|
|
"test-with-coverage": "jest test --coverage",
|
|
"eslint": "node_modules/.bin/eslint lib/",
|
|
"start": "node index.js",
|
|
"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": "*",
|
|
"debounce": "*",
|
|
"fast-deep-equal": "*",
|
|
"git-last-commit": "*",
|
|
"js-yaml": "*",
|
|
"mkdir-recursive": "*",
|
|
"moment": "*",
|
|
"mqtt": "*",
|
|
"object-assign-deep": "*",
|
|
"rimraf": "*",
|
|
"semver": "*",
|
|
"winston": "*",
|
|
"zigbee-herdsman": "0.11.1",
|
|
"zigbee-herdsman-converters": "11.1.28"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "*",
|
|
"eslint-config-google": "*",
|
|
"eslint-plugin-jest": "*",
|
|
"jest": "*",
|
|
"tmp": "*"
|
|
},
|
|
"jest": {
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"collectCoverageFrom": [
|
|
"lib/**"
|
|
]
|
|
}
|
|
}
|