{
  "name": "@octokit/request",
  "version": "2.4.2",
  "publishConfig": {
    "access": "public"
  },
  "description": "Send parameterized requests to GitHub’s APIs with sensible defaults in browsers and Node",
  "main": "index.js",
  "scripts": {
    "prebuild": "mkdirp dist/",
    "build": "npm-run-all build:*",
    "build:development": "webpack --mode development --entry . --output-library=Octokit --output=./dist/octokit-request.js --profile --json > dist/bundle-stats.json",
    "build:production": "webpack --mode production --entry . --plugin=compression-webpack-plugin --output-library=Octokit --output-path=./dist --output-filename=octokit-request.min.js --devtool source-map",
    "bundle-report": "webpack-bundle-analyzer dist/bundle-stats.json --mode=static --no-open --report dist/bundle-report.html",
    "coverage": "nyc report --reporter=html && open coverage/index.html",
    "coverage:upload": "nyc report --reporter=text-lcov | coveralls",
    "pretest": "standard",
    "test": "nyc mocha test/*-test.js",
    "test:browser": "cypress run --browser chrome",
    "semantic-release": "semantic-release"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/octokit/request.js.git"
  },
  "keywords": [
    "octokit",
    "github",
    "api",
    "request"
  ],
  "author": "Gregor Martynus (https://github.com/gr2m)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/octokit/request.js/issues"
  },
  "homepage": "https://github.com/octokit/request.js#readme",
  "dependencies": {
    "@octokit/endpoint": "^3.2.0",
    "deprecation": "^1.0.1",
    "is-plain-object": "^2.0.4",
    "node-fetch": "^2.3.0",
    "once": "^1.4.0",
    "universal-user-agent": "^2.0.1"
  },
  "devDependencies": {
    "chai": "^4.2.0",
    "compression-webpack-plugin": "^2.0.0",
    "coveralls": "^3.0.2",
    "cypress": "^3.1.0",
    "fetch-mock": "^7.2.0",
    "mkdirp": "^0.5.1",
    "mocha": "^6.0.0",
    "npm-run-all": "^4.1.3",
    "nyc": "^13.1.0",
    "semantic-release": "^15.10.5",
    "simple-mock": "^0.8.0",
    "standard": "^12.0.1",
    "webpack": "^4.22.0",
    "webpack-bundle-analyzer": "^3.0.3",
    "webpack-cli": "^3.1.2"
  },
  "browser": {
    "./lib/get-request-agent.js": false,
    "./lib/request/get-buffer-response.js": "./lib/request/get-buffer-response-browser.js"
  },
  "bundlesize": [
    {
      "path": "./dist/octokit-request.min.js.gz",
      "maxSize": "5KB"
    }
  ],
  "release": {
    "publish": [
      "@semantic-release/npm",
      {
        "path": "@semantic-release/github",
        "assets": [
          "dist/*",
          "!dist/*.map.gz"
        ]
      }
    ]
  },
  "standard": {
    "globals": [
      "describe",
      "before",
      "beforeEach",
      "afterEach",
      "after",
      "it",
      "expect"
    ]
  },
  "files": [
    "lib"
  ]
}
