{
  "name": "@hqoss/http-client",
  "version": "0.1.27-0",
  "description": "A light-weight, performant, composable blueprint for writing consistent and re-usable Node.js HTTP clients",
  "main": "./dist/lib/index.js",
  "typings": "./dist/lib/index.d.ts",
  "engines": {
    "node": ">=12",
    "npm": ">=6"
  },
  "scripts": {
    "build": "npm run clean && npm run format && npm run compile",
    "clean": "rm -rf ./dist && rm -rf ./docs",
    "compile": "tsc",
    "format": "prettier --write \"./{lib,test}/**/*.ts\"",
    "format:check": "prettier --check \"./{lib,test}/**/*.ts\"",
    "test": "tsc && node ./dist/test/httpClient/httpClient.test.js",
    "generate-docs": "typedoc --mode file --excludePrivate --excludeNotExported --plugin typedoc-plugin-markdown --out ./docs && rm ./docs/README.md",
    "preversion": "npm run format:check && npm run build && npm test",
    "prepublishOnly": "npm run format:check && npm run build && npm test",
    "postversion": "git push --follow-tags"
  },
  "keywords": [
    "http",
    "https",
    "request",
    "javascript",
    "js",
    "typescript",
    "node",
    "node.js"
  ],
  "author": "Slavo Vojacek",
  "license": "MIT",
  "dependencies": {
    "tslib": "^2.0.1"
  },
  "devDependencies": {
    "@types/node": "^14.6.0",
    "nock": "^13.0.4",
    "prettier": "2.0.5",
    "typedoc": "^0.18.0",
    "typedoc-plugin-markdown": "^2.4.1",
    "typescript": "^3.9.7"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:hqoss/node-http-client.git"
  }
}
