2021-09-07 18:25:31 +00:00
|
|
|
{
|
2023-07-16 23:40:01 +00:00
|
|
|
"name": "@furality/nestjs-http-promise",
|
2023-12-31 06:26:06 +00:00
|
|
|
"version": "0.0.0-semantically-released",
|
2023-07-05 22:56:51 +00:00
|
|
|
"private": false,
|
2021-11-05 10:44:03 +00:00
|
|
|
"keywords": [
|
|
|
|
"nestjs",
|
|
|
|
"http",
|
|
|
|
"promise",
|
|
|
|
"retry",
|
|
|
|
"retries",
|
|
|
|
"axios"
|
|
|
|
],
|
2021-09-07 18:25:31 +00:00
|
|
|
"description": "promise implementation of nestjs http module with retries feature using axios-retry and axios",
|
2023-07-16 23:40:01 +00:00
|
|
|
"author": "furality",
|
2021-09-07 18:25:31 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
2023-07-16 23:40:01 +00:00
|
|
|
"url": "https://github.com/furality/nestjs-http-promise#readme",
|
2021-09-07 18:25:31 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "rimraf -rf dist && tsc -p tsconfig.json",
|
|
|
|
"format": "prettier --write \"{lib}/**/*.ts\"",
|
|
|
|
"lint": "eslint 'lib/**/*.ts' --fix",
|
2023-12-30 22:07:08 +00:00
|
|
|
"prepare": "npm run build"
|
2021-09-07 18:25:31 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-21 14:17:10 +00:00
|
|
|
"axios-retry": "^4.4.1"
|
2021-09-07 18:25:31 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-01 14:11:39 +00:00
|
|
|
"@nestjs/common": "^10.3.10",
|
|
|
|
"@nestjs/core": "^10.3.10",
|
|
|
|
"@nestjs/platform-express": "^10.3.10",
|
2024-07-08 14:21:28 +00:00
|
|
|
"@types/node": "^20.14.10",
|
2024-07-11 14:51:08 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
|
|
"@typescript-eslint/parser": "^7.16.0",
|
2024-02-23 22:33:35 +00:00
|
|
|
"eslint": "^8.57.0",
|
2023-12-04 14:44:52 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2023-12-15 14:07:45 +00:00
|
|
|
"eslint-plugin-import": "^2.29.1",
|
2023-11-14 15:31:21 +00:00
|
|
|
"eslint-plugin-no-type-assertion": "^1.3.0",
|
2024-01-10 14:57:39 +00:00
|
|
|
"eslint-plugin-prettier": "^5.1.3",
|
2024-07-03 14:59:22 +00:00
|
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
2024-04-03 14:47:00 +00:00
|
|
|
"eslint-plugin-sonarjs": "^0.25.1",
|
2024-04-30 15:03:18 +00:00
|
|
|
"eslint-plugin-unused-imports": "^3.2.0",
|
2024-02-14 14:13:18 +00:00
|
|
|
"husky": "^9.0.11",
|
2024-06-13 14:12:59 +00:00
|
|
|
"lint-staged": "^15.2.7",
|
2024-07-15 14:33:41 +00:00
|
|
|
"prettier": "^3.3.3",
|
2024-07-11 14:51:08 +00:00
|
|
|
"rimraf": "^6.0.1",
|
2024-07-02 14:42:59 +00:00
|
|
|
"typescript": "^5.5.3"
|
2021-09-07 18:25:31 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2024-04-06 20:47:02 +00:00
|
|
|
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
|
|
|
|
"axios": "^1.6.5"
|
2021-09-07 18:25:31 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
|
|
|
"prettier --write"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-07-16 23:40:01 +00:00
|
|
|
"url": "https://github.com/furality/nestjs-http-promise"
|
2023-07-05 22:59:40 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
2023-07-17 00:09:55 +00:00
|
|
|
"access": "public",
|
|
|
|
"registry": "https://npm.pkg.github.com"
|
2023-07-05 23:57:53 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
]
|
2021-09-07 18:25:31 +00:00
|
|
|
}
|