{
  "name": "promised-retry",
  "version": "0.5.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": "^14.17.0 || >=16.0.0"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "files": [
    "index.js",
    "index.d.ts",
    "index.d.ts.map"
  ],
  "scripts": {
    "build:0": "run-s clean",
    "build:1-declaration": "tsc -p declaration.tsconfig.json",
    "build": "run-s build:*",
    "check:dependency-check": "dependency-check *.js 'test/**/*.js' --no-dev",
    "check:installed-check": "installed-check -i eslint-plugin-jsdoc",
    "check:lint": "eslint .",
    "check:tsc": "tsc",
    "check:type-coverage": "type-coverage --detail --strict --at-least 95 --ignore-files 'test/*'",
    "check": "run-s clean && run-p check:*",
    "clean:declarations": "rm -rf $(find . -maxdepth 2 -type f -name '*.d.ts*')",
    "clean": "run-p clean:*",
    "prepublishOnly": "run-s build",
    "sync-gh-actions": "ghat",
    "test:mocha": "cross-env NODE_ENV=test c8 --reporter=lcov --reporter text mocha test/**/*.spec.js",
    "test-ci": "run-s test:*",
    "test": "run-s check test:*",
    "prepare": "husky install"
  },
  "devDependencies": {
    "@types/chai": "^4.3.1",
    "@types/mocha": "^9.1.0",
    "@types/node": "^14.18.13",
    "@types/sinon": "^10.0.11",
    "@types/sinon-chai": "^3.2.8",
    "@voxpelli/eslint-config": "^13.0.3",
    "@voxpelli/eslint-config-jsdoc-ts": "^1.0.0",
    "@voxpelli/tsconfig": "^3.2.0",
    "c8": "^7.11.0",
    "chai": "^4.3.6",
    "cross-env": "^7.0.3",
    "dependency-check": "^5.0.0-4",
    "eslint": "^8.9.0",
    "eslint-config-standard": "^17.0.0-1",
    "eslint-plugin-es": "^4.1.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-jsdoc": "^37.9.4",
    "eslint-plugin-mocha": "^10.0.3",
    "eslint-plugin-n": "^14.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "eslint-plugin-security": "^1.4.0",
    "eslint-plugin-unicorn": "^41.0.0",
    "ghat": "^0.14.0",
    "husky": "^7.0.0",
    "installed-check": "^5.0.0",
    "mocha": "^9.2.2",
    "npm-run-all": "^4.1.5",
    "sinon": "^13.0.2",
    "sinon-chai": "^3.7.0",
    "type-coverage": "^2.21.1",
    "typescript": "~4.6.0"
  },
  "dependencies": {
    "pony-cause": "^1.1.1"
  }
}
