retry-axios
Version:
Retry HTTP requests with Axios.
64 lines (63 loc) • 1.34 kB
JSON
{
"name": "retry-axios",
"version": "3.1.3",
"description": "Retry HTTP requests with Axios.",
"exports": "./build/src/index.js",
"type": "module",
"types": "./build/src/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/JustinBeckwith/retry-axios.git"
},
"scripts": {
"lint": "xo --prettier",
"fix": "xo --prettier --fix",
"compile": "tsc -p .",
"test": "c8 mocha build/test",
"pretest": "npm run compile",
"license-check": "jsgl --local ."
},
"keywords": [
"axios",
"retry"
],
"author": {
"name": "Justin Beckwith"
},
"license": "Apache-2.0",
"peerDependencies": {
"axios": "*"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.0",
"axios": "^1.2.1",
"c8": "^8.0.0",
"js-green-licenses": "^4.0.0",
"mocha": "^10.2.0",
"nock": "^13.3.0",
"semantic-release": "^22.0.0",
"sinon": "^17.0.0",
"typescript": "~5.2.0",
"xo": "^0.56.0"
},
"files": [
"build/src"
],
"c8": {
"exclude": [
"build/test",
"dist"
]
},
"xo": {
"rules": {
"@typescript-eslint/prefer-nullish-coalescing": "off",
"@typescript-eslint/consistent-type-definitions": "off"
}
}
}