{
  "name": "homebridge-yamaha-home",
  "version": "0.2.1",
  "description": "Control your Yamaha AVR",
  "main": "src/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NorthernMan54/homebridge-yamaha-home.git"
  },
  "author": "NorthernMan54",
  "preferGlobal": true,
  "keywords": [
    "homebridge-plugin",
    "YamahaAVR",
    "Yamaha"
  ],
  "engines": {
    "homebridge": "^1.6.0 || ^2.0.0-beta.0",
    "node": ">=20"
  },
  "dependencies": {
    "bonjour": "^=3.5.0",
    "core-util-is": "^1.0.1",
    "debug": "^4.3.7",
    "inherits": "^2.0.1",
    "ip": "^=2.0.1",
    "node-cache": "^5.1.2",
    "semver": "^7.6.3",
    "util": "^0.12.5",
    "yamaha-nodejs": ">=0.9.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.14.0",
    "eslint": "^9.39.1",
    "eslint-plugin-format": "^1.0.2",
    "eslint-plugin-jest": "^29.2.0",
    "globals": "^16.5.0",
    "jest": "^30.2.0",
    "nodemon": "^3.1.7"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/NorthernMan54/homebridge-yamaha-home/issues"
  },
  "homepage": "https://github.com/NorthernMan54/homebridge-yamaha-home#readme",
  "scripts": {
    "lint": "eslint --max-warnings=0 .",
    "lint:fix": "eslint --fix --max-warnings=0 .",
    "watch": "nodemon",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage"
  },
  "nodemonConfig": {
    "watch": [
      "src"
    ],
    "ext": "js,cjs,mjs,json",
    "ignore": [
      "**/*.spec.js",
      "**/*.test.js"
    ],
    "exec": "DEBUG=HAP-NodeJS*,yamaha*,Yamaha*- ~/npm/bin/homebridge -U ./test/hbConfig -I -T -D -P .",
    "signal": "SIGTERM",
    "env": {
      "NODE_OPTIONS": "--trace-warnings"
    }
  },
  "jest": {
    "testEnvironment": "node",
    "modulePathIgnorePatterns": [],
    "coverageReporters": [
      "lcov"
    ],
    "collectCoverageFrom": [
      "src/**",
      "!src/accessories/**",
      "!src/lib/definitions/generate-definitions.ts",
      "!src/lib/definitions/generator-configuration.ts",
      "!src/test-utils"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/"
    ]
  }
}