{
  "name": "@octokit/endpoint",
  "version": "3.2.3",
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "description": "Turns REST API endpoints into generic request options",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "prebuild": "mkdirp dist/",
    "build": "npm-run-all build:*",
    "build:development": "webpack --mode development --entry . --output-library=octokitEndpoint --output=./dist/octokit-endpoint.js --profile --json > dist/bundle-stats.json",
    "build:production": "webpack --mode production --entry . --plugin=compression-webpack-plugin --output-library=octokitEndpoint --output-path=./dist --output-filename=octokit-endpoint.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 && standard-markdown *.md",
    "test": "nyc mocha test/*-test.js",
    "test:browser": "cypress run --browser chrome",
    "semantic-release": "semantic-release"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/octokit/endpoint.js.git"
  },
  "keywords": [
    "octokit",
    "github",
    "api",
    "rest"
  ],
  "author": "Gregor Martynus (https://github.com/gr2m)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/octokit/endpoint.js/issues"
  },
  "homepage": "https://github.com/octokit/endpoint.js#readme",
  "devDependencies": {
    "chai": "^4.2.0",
    "compression-webpack-plugin": "^2.0.0",
    "coveralls": "^3.0.2",
    "cypress": "^3.1.0",
    "mkdirp": "^0.5.1",
    "mocha": "^6.0.2",
    "npm-run-all": "^4.1.3",
    "nyc": "^13.1.0",
    "semantic-release": "^15.10.3",
    "sinon-chai": "^3.2.0",
    "standard": "^12.0.1",
    "standard-markdown": "^5.0.1",
    "webpack": "^4.21.0",
    "webpack-bundle-analyzer": "^3.0.3",
    "webpack-cli": "^3.1.2"
  },
  "dependencies": {
    "deepmerge": "3.2.0",
    "is-plain-object": "^2.0.4",
    "universal-user-agent": "^2.0.1",
    "url-template": "^2.0.8"
  },
  "bundlesize": [
    {
      "path": "./dist/octokit-endpoint.min.js.gz",
      "maxSize": "3.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",
    "with-defaults.js"
  ]
}
