APCOvernight/huelog-slack

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "huelog-slack",
  "version": "0.1.0",
  "description": "HueStatus module for slack reporting.",
  "main": "index.js",
  "scripts": {
    "test": "npm run lint && nyc mocha",
    "lint": "eslint *.js test/**/*.js",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "stryker": "stryker run"
  },
  "dependencies": {
    "@slack/client": "^4.0.0",
    "requireg": "^0.1.7"
  },
  "devDependencies": {
    "apc-style": "1.2.0",
    "apc-test": "^1.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/APCOvernight/huelog-slack.git"
  },
  "keywords": [
    "huestatus",
    "philips",
    "hue",
    "status",
    "light"
  ],
  "author": "Mike Hingley",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/APCOvernight/huelog-slack/issues"
  },
  "homepage": "https://github.com/APCOvernight/huelog-slack#readme",
  "nyc": {
    "include": [
      "index.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
  },
  "directories": {
    "test": "test"
  }
}