{
  "name": "promised-retry",
  "version": "0.3.0",
  "description": "A generic promised based retry mechanism. Useful for eg. ensuring an available database or message queue connection",
  "homepage": "http://github.com/voxpelli/node-promised-retry",
  "repository": {
    "type": "git",
    "url": "git://github.com/voxpelli/node-promised-retry.git"
  },
  "author": {
    "name": "Pelle Wessman",
    "email": "pelle@kodfabrik.se",
    "url": "http://kodfabrik.se/"
  },
  "license": "MIT",
  "engines": {
    "node": ">=8.0.0"
  },
  "main": "index.js",
  "scripts": {
    "mocha": "NODE_ENV=test nyc --reporter=lcov --reporter text mocha test/**/*.spec.js",
    "dependency-check": "JS_FILES=\"*.js test/*.js\" && dependency-check . $JS_FILES && dependency-check . $JS_FILES --unused --no-dev",
    "test": "installed-check -e -i eslint && eslint . && npm run --silent dependency-check && npm run --silent mocha && tsc"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm test"
    }
  },
  "devDependencies": {
    "@types/node": "8.0.0",
    "chai": "4.2.0",
    "coveralls": "3.0.2",
    "dependency-check": "3.2.1",
    "eslint": "5.6.1",
    "eslint-config-standard": "12.0.0",
    "eslint-plugin-import": "2.14.0",
    "eslint-plugin-node": "7.0.1",
    "eslint-plugin-promise": "4.0.1",
    "eslint-plugin-standard": "4.0.0",
    "husky": "1.0.1",
    "installed-check": "2.2.0",
    "mocha": "5.2.0",
    "nyc": "13.0.1",
    "sinon": "6.3.4",
    "sinon-chai": "3.2.0",
    "typescript": "3.1.1"
  }
}
