{
  "name": "by-request",
  "version": "1.4.1",
  "description": "Simple Node http client for use with promises, async/await.",
  "module": "dist/index.min.mjs",
  "main": "dist/index.min.cjs",
  "typings": "dist/index",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": "./dist/index.min.mjs",
      "require": "./dist/index.min.cjs",
      "default": "./dist/index.min.cjs",
      "types": "./dist/index.d.ts"
    },
    "./dist/index.js": "./dist/index.min.cjs"
  },
  "scripts": {
    "build": "rimraf dist/ && rollup -c",
    "coverage": "nyc report --reporter=text-lcov > coverage/lcov.info",
    "prepack": "npm run lint && npm run test && npm run build",
    "lint": "eslint --ext .ts 'src/**/*.ts'",
    "test": "nyc --reporter=text --reporter=html mocha --require ts-node/register src/**/*.spec.ts && npm run coverage"
  },
  "author": "Kerry Shetline <kerry@shetline.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/kshetline/by-request.git"
  },
  "engines": {
    "node": ">=10.17"
  },
  "keywords": [
    "http",
    "https",
    "client",
    "node",
    "async",
    "await",
    "promise",
    "request",
    "wget",
    "curl",
    "bom",
    "character",
    "encoding",
    "file",
    "json",
    "jsonp"
  ],
  "nyc": {
    "exclude": [
      "**/*.spec.ts"
    ]
  },
  "dependencies": {
    "@tubular/util": "^4.18.2",
    "@types/follow-redirects": "^1.14.4",
    "follow-redirects": "1.15.6",
    "http-status-codes": "^2.3.0",
    "iconv-lite": "^0.6.3",
    "temp": "^0.9.4"
  },
  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.1.2",
    "@stylistic/eslint-plugin": "^4.4.1",
    "@types/chai": "^4.3.16",
    "@types/chai-as-promised": "^7.1.8",
    "@types/compression": "1.7.4",
    "@types/express": "^4.17.20",
    "@types/mocha": "^8.2.3",
    "@types/node": "^18.19.113",
    "@types/temp": "^0.9.3",
    "@typescript-eslint/eslint-plugin": "^8.34.0",
    "@typescript-eslint/parser": "^8.34.0",
    "body-parser": "1.20.3",
    "chai": "^4.4.1",
    "chai-as-promised": "^7.1.1",
    "compression": "^1.7.4",
    "eslint": "^9.29.0",
    "eslint-plugin-chai-friendly": "^1.1.0",
    "express": "^5.1.0",
    "mocha": "^10.8.2",
    "nyc": "^17.1.0",
    "rimraf": "^6.0.1",
    "rollup": "^4.43.0",
    "rollup-plugin-sourcemaps": "^0.6.3",
    "ts-node": "^10.9.1",
    "typescript": "^5.8.3"
  },
  "overrides": {
    "@rollup/pluginutils": {
      "rollup": "$rollup"
    }
  }
}
