{
  "_from": "superagent@^10.3.0",
  "_id": "superagent@10.3.0",
  "_inBundle": false,
  "_integrity": "sha512-B+4Ik7ROgVKrQsXTV0Jwp2u+PXYLSlqtDAhYnkkD+zn3yg8s/zjA2MeGayPoY/KICrbitwneDHrjSotxKL+0XQ==",
  "_location": "/superagent",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "superagent@^10.3.0",
    "name": "superagent",
    "escapedName": "superagent",
    "rawSpec": "^10.3.0",
    "saveSpec": null,
    "fetchSpec": "^10.3.0"
  },
  "_requiredBy": [
    "/supertest"
  ],
  "_resolved": "https://registry.npmjs.org/superagent/-/superagent-10.3.0.tgz",
  "_shasum": "ff1e39e7976b63f8084291d65f5bfbbbbd156989",
  "_spec": "superagent@^10.3.0",
  "_where": "C:\\Sites\\Ecommerce\\node_modules\\supertest",
  "author": {
    "name": "TJ Holowaychuk",
    "email": "tj@vision-media.ca"
  },
  "browser": {
    "./src/node/index.js": "./src/client.js",
    "./lib/node/index.js": "./lib/client.js",
    "./test/support/server.js": "./test/support/blank.js"
  },
  "bugs": {
    "url": "https://github.com/ladjs/superagent/issues"
  },
  "bundleDependencies": false,
  "contributors": [
    {
      "name": "Kornel Lesiński",
      "email": "kornel@geekhood.net"
    },
    {
      "name": "Peter Lyons",
      "email": "pete@peterlyons.com"
    },
    {
      "name": "Hunter Loftis",
      "email": "hunter@hunterloftis.com"
    },
    {
      "name": "Nick Baugh",
      "email": "niftylettuce@gmail.com"
    }
  ],
  "dependencies": {
    "component-emitter": "^1.3.1",
    "cookiejar": "^2.1.4",
    "debug": "^4.3.7",
    "fast-safe-stringify": "^2.1.1",
    "form-data": "^4.0.5",
    "formidable": "^3.5.4",
    "methods": "^1.1.2",
    "mime": "2.6.0",
    "qs": "^6.14.1"
  },
  "deprecated": false,
  "description": "elegant & feature rich browser / node HTTP with a fluent API",
  "devDependencies": {
    "@babel/cli": "^7.20.7",
    "@babel/core": "^7.20.12",
    "@babel/plugin-transform-runtime": "^7.19.6",
    "@babel/preset-env": "^7.20.2",
    "@babel/runtime": "^7.20.13",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "Base64": "^1.1.0",
    "babelify": "^10.0.0",
    "basic-auth-connect": "^1.0.0",
    "body-parser": "^1.20.4",
    "browserify": "^17.0.0",
    "cookie-parser": "^1.4.7",
    "cross-env": "^7.0.3",
    "eslint": "^8.32.0",
    "eslint-config-xo-lass": "2",
    "eslint-plugin-compat": "4.0.2",
    "eslint-plugin-node": "^11.1.0",
    "express": "^4.18.3",
    "express-session": "^1.17.3",
    "fixpack": "^4.0.0",
    "get-port": "4.2.0",
    "husky": "^9.1.7",
    "lint-staged": "^15.5.2",
    "marked": "^4.2.12",
    "mocha": "^6.2.3",
    "multer": "1.4.5-lts.1",
    "nyc": "^15.1.0",
    "remark-cli": "^11.0.0",
    "remark-preset-github": "4.0.4",
    "rimraf": "3",
    "should": "^13.2.3",
    "should-http": "^0.1.1",
    "tinyify": "3.0.0",
    "xo": "^0.53.1",
    "zuul": "^3.12.0"
  },
  "engines": {
    "node": ">=14.18.0"
  },
  "files": [
    "dist/*.js",
    "lib/**/*.js"
  ],
  "homepage": "https://github.com/ladjs/superagent",
  "jsdelivr": "dist/superagent.min.js",
  "keywords": [
    "agent",
    "ajax",
    "ajax",
    "api",
    "async",
    "await",
    "axios",
    "cancel",
    "client",
    "frisbee",
    "got",
    "http",
    "http",
    "https",
    "ky",
    "promise",
    "promise",
    "promises",
    "request",
    "request",
    "requests",
    "response",
    "rest",
    "retry",
    "super",
    "superagent",
    "timeout",
    "transform",
    "xhr",
    "xmlhttprequest"
  ],
  "license": "MIT",
  "main": "lib/node/index.js",
  "name": "superagent",
  "repository": {
    "type": "git",
    "url": "git://github.com/ladjs/superagent.git"
  },
  "scripts": {
    "browserify": "browserify src/node/index.js -o dist/superagent.js -s superagent -g [ babelify --configFile ./.dist.babelrc ]",
    "build": "npm run build:clean && npm run build:lib && npm run build:dist",
    "build:clean": "rimraf lib dist",
    "build:dist": "npm run browserify && npm run minify",
    "build:lib": "babel --config-file ./.lib.babelrc src --out-dir lib",
    "build:test": "babel --config-file ./.test.babelrc test --out-dir lib/node/test",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov",
    "lint": "eslint -c .eslintrc src test && remark . -qfo && eslint -c .lib.eslintrc lib/**/*.js && eslint -c .dist.eslintrc dist/**/*.js",
    "minify": "cross-env NODE_ENV=production browserify src/node/index.js -o dist/superagent.min.js -s superagent -g [ babelify --configFile ./.dist.babelrc ] -p tinyify",
    "nyc": "cross-env NODE_ENV=test nyc ava",
    "prepare": "husky",
    "test": "npm run build && npm run lint && make test",
    "test-http2": "npm run build && npm run lint && make test-node-http2"
  },
  "unpkg": "dist/superagent.min.js",
  "version": "10.3.0"
}
