APCOvernight/huestatus

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "huestatus",
  "version": "0.2.2",
  "description": "Modular status light system for use with Philips Hue devices",
  "main": "index.js",
  "scripts": {
    "test": "npm run lint && nyc mocha",
    "lint": "eslint *.js test/**/*.js src/**/*.js lib/**/*.js ",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "stryker": "stryker run"
  },
  "author": "Ian Egner <https://twitter.com/ianegner>",
  "license": "MIT",
  "dependencies": {
    "huejay": "^1.7.3",
    "rc": "^1.2.2",
    "requireg": "^0.2.2",
    "uuid": "^3.1.0"
  },
  "devDependencies": {
    "apc-style": "1.2.0",
    "apc-test": "1.1.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/APCOvernight/huestatus.git"
  },
  "bin": {
    "huestatus": "./index.js"
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "all": true,
    "watermarks": {
      "lines": [
        90,
        99
      ],
      "functions": [
        90,
        99
      ],
      "branches": [
        90,
        99
      ],
      "statements": [
        90,
        99
      ]
    },
    "reporter": [
      "clover",
      "text",
      "text-summary",
      "html",
      "cobertura",
      "lcov"
    ],
    "cache": true
  }
}