{ "name": "zigbee2mqtt", "version": "1.14.3-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 || ^13 || ^14" }, "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": "^6.12.3", "debounce": "^1.2.0", "fast-deep-equal": "^3.1.3", "git-last-commit": "^1.0.0", "humanize-duration": "^3.23.1", "js-yaml": "^3.14.0", "mkdir-recursive": "^0.4.0", "moment": "^2.27.0", "mqtt": "^4.1.0", "object-assign-deep": "^0.4.0", "rimraf": "^3.0.2", "semver": "^7.3.2", "winston": "^3.3.3", "winston-syslog": "^2.4.4", "zigbee-herdsman": "0.12.117", "zigbee-herdsman-converters": "12.0.161" }, "devDependencies": { "eslint": "*", "eslint-config-google": "*", "eslint-plugin-jest": "*", "jest": "*", "tmp": "*" }, "jest": { "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } }, "collectCoverageFrom": [ "lib/**" ] } }