nestjs-http-promise/package.json

77 lines
2 KiB
JSON
Raw Normal View History

{
"name": "@furality/nestjs-http-promise",
"version": "0.0.0-semantically-release",
2023-07-05 22:56:51 +00:00
"private": false,
"keywords": [
"nestjs",
"http",
"promise",
"retry",
"retries",
"axios"
],
"description": "promise implementation of nestjs http module with retries feature using axios-retry and axios",
"author": "furality",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"url": "https://github.com/furality/nestjs-http-promise#readme",
"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",
"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": {
"axios": "^1.4.0",
"axios-better-stacktrace": "^2.1.5",
"axios-retry": "^3.6.0"
},
"devDependencies": {
"@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3",
"@nestjs/platform-express": "^10.1.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"reflect-metadata": "^0.1.12"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/furality/nestjs-http-promise"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
2023-07-05 23:57:53 +00:00
},
"files": [
"dist"
]
}