{
  "name": "@shgysk8zer0/http",
  "version": "1.0.5",
  "description": "A JavaScript library that provides various utilities for working with HTTP",
  "keywords": [
    "http",
    "http-status",
    "http-error",
    "http-cookie",
    "node-http"
  ],
  "type": "module",
  "main": "http.cjs",
  "module": "http.js",
  "unpkg": "./http.js",
  "exports": {
    ".": {
      "import": "./http.js",
      "require": "./cjs/http.cjs"
    },
    "./*.js": {
      "import": "./*.js",
      "require": "./cjs/*.cjs"
    },
    "./*": {
      "import": "./*.js",
      "require": "./cjs/*.cjs"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "private": false,
  "scripts": {
    "test": "npm run lint:js && npm run build",
    "preversion": "npm test",
    "prepare": "npm run build",
    "lint:js": "eslint .",
    "fix:js": "eslint . --fix",
    "build": "npm run build:js",
    "build:js": "rm -f ./cjs/*.cjs && rollup -c rollup.config.js",
    "create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
    "version:bump": "npm run version:bump:patch",
    "version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
    "version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
    "version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shgysk8zer0/node-http.git"
  },
  "author": "Chris Zuber <admin@kernvalley.us>",
  "license": "MIT",
  "funding": [
    {
      "type": "librepay",
      "url": "https://liberapay.com/shgysk8zer0"
    },
    {
      "type": "github",
      "url": "https://github.com/sponsors/shgysk8zer0"
    }
  ],
  "bugs": {
    "url": "https://github.com/shgysk8zer0/node-http/issues"
  },
  "homepage": "https://github.com/shgysk8zer0/node-http#readme",
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^15.2.1",
    "@shgysk8zer0/js-utils": "^1.0.1",
    "@shgysk8zer0/npm-utils": "^1.1.0"
  },
  "dependencies": {
    "@shgysk8zer0/consts": "^1.0.7"
  }
}
