ksmithut/skyhook

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "skyhook",
  "version": "1.1.0",
  "description": "A promise-based pub sub hub hook system for node",
  "main": "index.js",
  "scripts": {
    "test": "istanbul cover _mocha",
    "jshint": "jshint --reporter node_modules/jshint-stylish index.js",
    "testcov": "istanbul cover _mocha",
    "check-cov": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
    "posttest": " npm run check-cov; npm run jshint;",
    "codeclimate": "cat ./coverage/lcov.info | codeclimate-test-reporter"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:ksmithut/skyhook.git"
  },
  "keywords": [
    "warpcore"
  ],
  "author": "ksmithut",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ksmithut/skyhook/issues"
  },
  "homepage": "https://github.com/ksmithut/skyhook",
  "dependencies": {
    "bluebird": "^2.9.34",
    "object-assign": "^3.0.0"
  },
  "devDependencies": {
    "chai": "^3.2.0",
    "chai-as-promised": "^5.1.0",
    "codeclimate-test-reporter": "^0.1.0",
    "istanbul": "^0.3.17",
    "jscs": "^1.13.1",
    "jshint": "^2.8.0",
    "jshint-stylish": "^2.0.1",
    "mocha": "^2.2.5",
    "mocha-lcov-reporter": "0.0.2"
  }
}