-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "nestjs-axios-retry",
"version": "1.0.7",
"description": "A NestJS module that provides Axios with configurable retry functionality, leveraging axios-retry for enhanced HTTP request resilience.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malindaj/nestjs-axios-retry.git"
},
"keywords": [
"nestjs",
"axios",
"http",
"retry",
"axios-retry",
"nestjs-module"
],
"author": "Malinda Jayawardana",
"license": "MIT",
"peerDependencies": {
"@nestjs/common": "^10.1.2",
"@nestjs/core": "^10.1.2"
},
"devDependencies": {
"@nestjs/testing": "^10.3.0",
"@types/jest": "^29.5.11",
"@types/node": "^17.0.0",
"axios-mock-adapter": "^1.22.0",
"jest": "^29.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@nestjs/axios": "^3.0.1",
"axios": "^1.6.5",
"axios-retry": "^4.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}