{
  "name": "lifx-lan-client",
  "description": "Node.js implementation of the LIFX LAN protocol",
  "version": "2.1.2",
  "author": "Marius Rumpf <marius@mariusrumpf.de>",
  "bugs": {
    "url": "https://github.com/node-lifx/lifx-lan-client/issues"
  },
  "dependencies": {
    "eventemitter3": "^5.0.1",
    "lodash": "^4.17.15"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.32.1",
    "@typescript-eslint/parser": "^8.32.1",
    "chai": "^5.2.0",
    "codecov": "^3.8.3",
    "eslint": "^8.57.1",
    "mocha": "^11.1.0",
    "nyc": "^17.1.0",
    "sinon": "^13.0.2",
    "typescript": "^5.8.3"
  },
  "directories": {
    "test": "test",
    "lib": "src",
    "example": "example"
  },
  "homepage": "https://github.com/node-lifx/lifx-lan-client#readme",
  "keywords": [
    "bulb",
    "lan",
    "lifx",
    "light",
    "lightbulb"
  ],
  "license": "MIT",
  "main": "./src/lifx",
  "types": "./src/lifx.d.ts",
  "engines": {
    "node": ">=8.10"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/node-lifx/lifx-lan-client.git"
  },
  "scripts": {
    "lint": "eslint src/ test/ example/ cli.js",
    "lint:fix": "npm run lint -- --fix",
    "pretest": "npm run lint",
    "unittest": "mocha || true",
    "unittest:bail": "mocha --bail || true",
    "test": "nyc --reporter=lcov mocha",
    "report-coverage": "codecov"
  },
  "mocha": {
    "ui": "bdd",
    "recursive": true,
    "spec": "test/unit/"
  }
}
