{
  "name": "homebridge-alexa",
  "version": "0.9.3",
  "description": "Control your Homebridge devices with Amazon Alexa.",
  "main": "src/plugin.js",
  "scripts": {
    "test": "jest --forceExit --detectOpenHandles --verbose=true  ",
    "api": "documentation build plugin.js lib/alexaActions.js lib/alexaLocal.js lib/alexaMessages.js lib/alexaTranslator.js -f md --config docs/documentation.yml > docs/API.md",
    "document": "./gh-md-toc --hide-footer README.md ;./gh-md-toc --hide-footer Troubleshooting.md ;./gh-md-toc --hide-footer Installation.md; rm README.md.orig.* README.md.toc.* Troubleshooting.md.orig.* Troubleshooting.md.toc.* Installation.md.orig.* Installation.md.toc.*",
    "watch": "nodemon",
    "lint": "eslint --max-warnings=10 .",
    "lint:fix": "eslint --fix --max-warnings=0 ."
  },
  "nodemonConfig": {
    "watch": [],
    "ext": "js",
    "ignore": [],
    "exec": "~/npm/bin/homebridge -U ./test/hbConfig -T -D -P .",
    "signal": "SIGTERM",
    "env": {
      "NODE_OPTIONS": "--trace-warnings"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NorthernMan54/homebridge-alexa.git"
  },
  "engines": {
    "homebridge": "^1.6.0 || ^2.0.0-beta.0",
    "node": ">=18"
  },
  "keywords": [
    "alexa",
    "homebridge-plugin"
  ],
  "devDependencies": {
    "@eslint/js": "^9.14.0",
    "@homebridge/hap-client": "^3.1.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.8.1",
    "babel-jest": "^30.2.0",
    "eslint": "^9.37.0",
    "eslint-plugin-format": "^1.0.2",
    "eslint-plugin-jest": "^29.0.1",
    "globals": "^16.4.0",
    "jest": "^30.2.0",
    "mqtt-connection": "^4.1.0",
    "nodemon": "^3.1.9",
    "rimraf": "^6.0.1",
    "semver": "^7.6.3"
  },
  "dependencies": {
    "axios": "^1.7.9",
    "bottleneck": "2.19.5",
    "debug": "4.4.3",
    "hap-node-client": "^0.2.9",
    "is-my-json-valid": "2.20.6",
    "mqtt": "5.14.1"
  },
  "author": "NorthernMan54",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/NorthernMan54/homebridge-alexa/issues"
  },
  "homepage": "https://github.com/NorthernMan54/homebridge-alexa#readme",
  "jest": {
    "testEnvironment": "node",
    "modulePathIgnorePatterns": [],
    "coverageReporters": [
      "lcov"
    ],
    "collectCoverageFrom": [
      "src/**"
    ]
  }
}