{
  "name": "nock",
  "description": "HTTP server mocking and expectations library for Node.js",
  "tags": [
    "Mock",
    "HTTP",
    "testing",
    "isolation"
  ],
  "version": "13.1.0",
  "author": "Pedro Teixeira <pedro.teixeira@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/nock/nock.git"
  },
  "bugs": {
    "url": "http://github.com/nock/nock/issues"
  },
  "engines": {
    "node": ">= 10.13"
  },
  "main": "./index.js",
  "types": "types",
  "dependencies": {
    "debug": "^4.1.0",
    "json-stringify-safe": "^5.0.1",
    "lodash.set": "^4.3.2",
    "propagate": "^2.0.0"
  },
  "devDependencies": {
    "@sinonjs/fake-timers": "^7.0.2",
    "assert-rejects": "^1.0.0",
    "chai": "^4.1.2",
    "dirty-chai": "^2.0.1",
    "dtslint": "^4.0.4",
    "eslint": "^7.3.1",
    "eslint-config-prettier": "^8.1.0",
    "eslint-config-standard": "^16.0.2",
    "eslint-plugin-import": "^2.16.0",
    "eslint-plugin-mocha": "^8.0.0",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-promise": "^4.1.1",
    "eslint-plugin-standard": "^5.0.0",
    "form-data": "^4.0.0",
    "got": "^11.3.0",
    "mocha": "^8.0.1",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.0.0",
    "prettier": "2.2.1",
    "proxyquire": "^2.1.0",
    "rimraf": "^3.0.0",
    "semantic-release": "^17.0.2",
    "sinon": "^10.0.0",
    "sinon-chai": "^3.3.0",
    "typescript": "^4.2.2"
  },
  "scripts": {
    "format:fix": "prettier --write '**/*.{js,json,md,ts,yml,yaml}'",
    "format": "prettier --check '**/*.{js,json,md,ts,yml,yaml}'",
    "lint": "run-p lint:js lint:ts",
    "lint:js": "eslint --cache --cache-location './.cache/eslint' '**/*.js'",
    "lint:js:fix": "eslint --cache --cache-location './.cache/eslint' --fix '**/*.js'",
    "lint:ts": "dtslint types",
    "test": "nyc mocha tests",
    "test:coverage": "open coverage/lcov-report/index.html"
  },
  "license": "MIT",
  "files": [
    "index.js",
    "lib",
    "types/index.d.ts"
  ],
  "release": {
    "branches": [
      "+([0-9])?(.{+([0-9]),x}).x",
      "main",
      "next",
      "next-major",
      {
        "name": "beta",
        "prerelease": true
      },
      {
        "name": "alpha",
        "prerelease": true
      }
    ]
  }
}
