mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-20 02:21:20 +00:00
* Update zigbee-herdsman and zigbee-shepherd-converters. * Force Aqara S2 Lock endvices (#1764) * Start on zigbee-herdsman controller refactor. * More updates. * Cleanup zapp. * updates. * Propagate adapter disconnected event. * Updates. * Initial refactor to zigbee-herdsman. * Refactor deviceReceive to zigbee-herdsman. * Rename * Refactor deviceConfigure. * Finish bridge config. * Refactor availability. * Active homeassistant extension and more refactors. * Refactor groups. * Enable soft reset. * Activate group membership * Start on tests. * Enable reporting. * Add more controller tests. * Add more tests * Fix linting error. * Data en deviceReceive tests. * Move to zigbee-herdsman-converters. * More device publish tests. * Cleanup dependencies. * Bring device publish coverage to 100. * Bring home assistant test coverage to 100. * Device configure tests. * Attempt to fix tests. * Another attempt. * Another one. * Another one. * Another. * Add wait. * Longer wait. * Debug. * Update dependencies. * Another. * Begin on availability tests. * Improve availability tests. * Complete deviceAvailability tests. * Device bind tests. * More tests. * Begin networkmap refactors. * start on networkmap tests. * Network map tests. * Add utils tests. * Logger tests. * Settings and logger tests. * Ignore some stuff for coverage and add todos. * Add remaining missing tests. * Enforce 100% test coverage. * Start on groups test and refactor entityPublish to resolveEntity * Remove joinPathStorage, not used anymore as group information is stored into zigbee-herdsman database. * Fix linting issues. * Improve tests. * Add groups. * fix group membership. * Group: log names. * Convert MQTT message to string by default. * Fix group name. * Updates. * Revert configuration.yaml. * Add new line. * Fixes. * Updates. * Fix tests. * Ignore soft reset extension.
70 lines
1.4 KiB
JSON
70 lines
1.4 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": {
|
|
"debounce": "*",
|
|
"git-last-commit": "*",
|
|
"js-yaml": "*",
|
|
"mkdir-recursive": "*",
|
|
"moment": "*",
|
|
"mqtt": "*",
|
|
"object-assign-deep": "*",
|
|
"rimraf": "*",
|
|
"semver": "*",
|
|
"winston": "2.4.2",
|
|
"zigbee-herdsman": "0.6.4",
|
|
"zigbee-herdsman-converters": "11.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "*",
|
|
"eslint-config-google": "*",
|
|
"eslint-plugin-jest": "*",
|
|
"jest": "*",
|
|
"tmp": "*"
|
|
},
|
|
"jest": {
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"collectCoverageFrom": [
|
|
"lib/**"
|
|
]
|
|
}
|
|
}
|