{
  "name": "@bernierllc/http-client-base",
  "version": "0.6.0",
  "description": "Shared HTTP client utilities for API and download connectors",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "http",
    "client",
    "axios",
    "request",
    "response",
    "bernierllc",
    "core"
  ],
  "author": "Bernier LLC",
  "license": "Bernier LLC",
  "dependencies": {
    "axios": "^1.7.0",
    "@bernierllc/retry-policy": "0.7.0",
    "@bernierllc/rate-limiter": "0.7.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.5",
    "@types/node": "^20.6.0",
    "jest": "^29.6.4",
    "nock": "^13.5.0",
    "rimraf": "^5.0.1",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bernier-llc/tools"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:run": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "clean": "rimraf dist",
    "prebuild": "npm run clean"
  }
}