{
  "name": "http-status-check",
  "version": "1.0.2",
  "description": "Utility to check the HTTP status of URL endpoints",
  "main": "index.js",
  "scripts": {
    "pre-commit-update": "node_modules/.bin/npm-update-outdated",
    "test": "node_modules/.bin/mocha ./test/ --recursive",
    "posttest": "node_modules/.bin/jshint .",
    "check-coverage": "node_modules/.bin/istanbul check-coverage --statements 100 --branches 86 --functions 100 --lines 100 ./coverage/coverage.json",
    "coverage": "node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- ./test/ --recursive",
    "jshint": "node_modules/.bin/jshint .",
    "coveralls": "node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose",
    "start": "node index.js",
    "pre-commit-stash-save": "git stash --keep-index",
    "post-commit-stash-pop": "git stash pop"
  },
  "pre-commit": [
    "pre-commit-update",
    "jshint",
    "pre-commit-stash-save",
    "coverage",
    "post-commit-stash-pop",
    "check-coverage"
  ],
  "engines": {
    "node": ">= 0.10"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/guyellis/http-status-check.git"
  },
  "keywords": [
    "http",
    "status",
    "checker"
  ],
  "author": "Guy Ellis <wildfiction@gmail.com> (http://www.guyellisrocks.com/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/guyellis/http-status-check/issues"
  },
  "homepage": "https://github.com/guyellis/http-status-check",
  "dependencies": {
    "async": "~0.9.0",
    "debug": "~2.1.1",
    "lodash": "~3.8.0",
    "nodemailer": "~1.3.0",
    "request": "~2.55.0",
    "string": "~3.1.0",
    "sugar": "~1.4.1"
  },
  "devDependencies": {
    "bunyan": "^1.2.3",
    "chai": "^2.0.0",
    "coveralls": "*",
    "istanbul": "*",
    "jshint": "^2.5.10",
    "mocha": "*",
    "npm-update-outdated": "^0.1.3",
    "pre-commit": "^1.0.1",
    "rewire": "^2.1.3"
  },
  "inAdapter": {
    "type": "./lib/inAdapters/fileAdapter"
  },
  "concurrentRequests": 10,
  "allSites": {
    "excludedHeaders": [],
    "requestHeaders": {
      "User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0"
    }
  }
}
