{
  "name": "promises-to-retry",
  "version": "1.5.0",
  "description": "Simple utility library that provides retry/reflect mechanism for a list of promises",
  "license": "MIT",
  "author": "Andreja Jevtic <andjevtic@gmail.com>",
  "main": "lib/index.js",
  "keywords": [
    "promise",
    "retry"
  ],
  "scripts": {
    "test": "ava -v",
    "docs": "jsdoc2md lib/*.js > readme.md",
    "lint": "eslint --ignore-path .gitignore .",
    "lint-fix": "eslint --fix .",
    "test:coverage": "nyc npm run test",
    "test:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "test:coverage:report": "npm run test:coverage && npm run test:report"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/futin/promises-to-retry.git"
  },
  "homepage": "git+https://github.com/futin/promises-to-retry#readme",
  "devDependencies": {
    "ava": "^5.2.0",
    "eslint": "^8.3.0",
    "eslint-config-standard": "^16.0.3",
    "eslint-plugin-import": "^2.25.3",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^5.1.1",
    "eslint-plugin-standard": "^4.1.0",
    "jsdoc-to-markdown": "^7.1.0",
    "nyc": "^15.1.0",
    "sinon": "^12.0.1"
  }
}
