@odata2ts/http-client-axios
Version:
Axios based odata HTTP client consumable by odata2ts
48 lines • 1.1 kB
JSON
{
"name": "@odata2ts/http-client-axios",
"version": "0.12.0",
"description": "Axios based odata HTTP client consumable by odata2ts",
"keywords": [
"http client",
"axios",
"odata",
"odata2ts",
"ts",
"typescript"
],
"repository": "git@github.com:odata2ts/http-client.git",
"license": "MIT",
"author": "texttechne",
"type": "commonjs",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"*.md",
"lib",
"LICENSE"
],
"scripts": {
"build": "yarn clean && yarn compile",
"check-circular-deps": "madge ./src --extensions ts --circular",
"clean": "rimraf lib coverage",
"compile": "tsc",
"unit-test": "vitest run --dir test",
"int-test": "vitest run --dir int-test",
"test": "vitest run"
},
"dependencies": {
"@odata2ts/http-client-base": "^0.5.4"
},
"devDependencies": {
"@types/node": "^17.0.23",
"axios": "^1.4.0",
"rimraf": "^5.0.1",
"typescript": "5.0.4"
},
"peerDependencies": {
"axios": "^0.27.0 || ^1.0.0"
},
"publishConfig": {
"access": "public"
}
}