2021-09-07 18:25:31 +00:00
|
|
|
{
|
2023-07-16 23:40:01 +00:00
|
|
|
"name": "@furality/nestjs-http-promise",
|
2023-07-05 22:35:08 +00:00
|
|
|
"version": "0.0.0-semantically-release",
|
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",
|
2022-05-11 23:30:48 +00:00
|
|
|
"prepare": "npm run build",
|
2021-09-07 18:25:31 +00:00
|
|
|
"prepublish:npm": "npm run build",
|
|
|
|
"publish:npm": "npm publish --access public",
|
|
|
|
"publish:beta": "npm publish --access public --tag beta",
|
|
|
|
"prepublish:beta": "npm run build"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-21 14:57:01 +00:00
|
|
|
"axios-retry": "^3.8.0"
|
2021-09-07 18:25:31 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-10-05 14:43:43 +00:00
|
|
|
"@nestjs/common": "^10.2.7",
|
2023-10-05 14:45:35 +00:00
|
|
|
"@nestjs/core": "^10.2.7",
|
2023-10-05 14:43:24 +00:00
|
|
|
"@nestjs/platform-express": "^10.2.7",
|
2023-10-03 14:30:11 +00:00
|
|
|
"@types/node": "^20.8.2",
|
2023-10-03 14:27:32 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
2023-10-03 14:29:17 +00:00
|
|
|
"@typescript-eslint/parser": "^6.7.4",
|
2023-10-09 15:03:27 +00:00
|
|
|
"eslint": "^8.51.0",
|
2023-08-07 15:11:00 +00:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-08-21 14:15:49 +00:00
|
|
|
"eslint-plugin-import": "^2.28.1",
|
2023-07-05 23:06:40 +00:00
|
|
|
"husky": "^8.0.3",
|
2023-08-21 14:15:19 +00:00
|
|
|
"lint-staged": "^14.0.1",
|
2023-08-29 14:38:07 +00:00
|
|
|
"prettier": "^3.0.3",
|
2021-11-05 10:44:03 +00:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2023-09-27 14:27:12 +00:00
|
|
|
"rimraf": "^5.0.5",
|
2023-08-25 14:49:35 +00:00
|
|
|
"typescript": "^5.2.2"
|
2021-09-07 18:25:31 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-07-05 22:36:16 +00:00
|
|
|
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
|
2023-08-08 21:15:01 +00:00
|
|
|
"reflect-metadata": "^0.1.12",
|
|
|
|
"axios": "^1.4.0"
|
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
|
|
|
}
|