axios-http2-adapter
Version:
`axios-http2-adapter` is a custom adapter designed to fill a gap in the current Axios ecosystem. Despite widespread demand, as evidenced by [axios issue #1175](https://github.com/axios/axios/issues/1175), Axios has yet to implement native HTTP/2 support.
54 lines (53 loc) • 1.17 kB
JSON
{
"name": "axios-http2-adapter",
"version": "1.0.3",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"release:commit": "./release-commit.sh",
"release:publish": "./release-publish.sh"
},
"keywords": [],
"author": "",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm test",
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/express": "~4.17",
"@types/follow-redirects": "~1.14",
"@types/jest": "~29.5",
"@types/node": "~20.10",
"@typescript-eslint/eslint-plugin": "~6.15",
"@typescript-eslint/parser": "~6.15",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-prettier": "~5.0",
"express": "~4.21",
"husky": "~8.0",
"jest": "~29.7",
"lint-staged": "~15.2",
"prettier": "~3.1",
"ts-jest": "~29.1",
"typescript": "~5.3"
},
"dependencies": {
"follow-redirects": "~1.15",
"http2-wrapper": "~2.2"
},
"peerDependencies": {
"axios": "^1.9"
}
}