{
  "name": "openid-client",
  "version": "3.15.2",
  "description": "OpenID Connect Relying Party (RP, Client) implementation for Node.js runtime, supports passportjs",
  "keywords": [
    "auth",
    "authentication",
    "basic",
    "certified",
    "client",
    "connect",
    "dynamic",
    "electron",
    "hybrid",
    "identity",
    "implicit",
    "oauth",
    "oauth2",
    "oidc",
    "openid",
    "passport",
    "relying party",
    "strategy"
  ],
  "homepage": "https://github.com/panva/node-openid-client",
  "repository": "panva/node-openid-client",
  "license": "MIT",
  "author": "Filip Skokan <panva.ip@gmail.com>",
  "files": [
    "lib",
    "types/index.d.ts"
  ],
  "funding": "https://github.com/sponsors/panva",
  "main": "lib/index.js",
  "types": "types/index.d.ts",
  "scripts": {
    "coverage": "nyc mocha test/**/*.test.js",
    "lint": "eslint lib test",
    "lint-ts": "npx typescript@~3.6.0 --build types",
    "lint-fix": "eslint lib test --fix",
    "test": "mocha test/**/*.test.js"
  },
  "dependencies": {
    "@types/got": "^9.6.9",
    "base64url": "^3.0.1",
    "got": "^9.6.0",
    "jose": "^1.27.1",
    "lodash": "^4.17.15",
    "lru-cache": "^5.1.1",
    "make-error": "^1.3.6",
    "object-hash": "^2.0.1",
    "oidc-token-hash": "^5.0.0",
    "p-any": "^3.0.0"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.3.4",
    "@commitlint/config-conventional": "^8.3.4",
    "@types/passport": "^1.0.3",
    "chai": "^4.2.0",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-plugin-import": "^2.19.1",
    "husky": "^4.0.0",
    "mocha": "^7.0.0",
    "nock": "^12.0.1",
    "nyc": "^15.0.0",
    "readable-mock-req": "^0.2.2",
    "sinon": "^9.0.0",
    "timekeeper": "^2.2.0"
  },
  "engines": {
    "node": "^10.13.0 || >=12.0.0"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "nyc": {
    "reporter": [
      "lcov",
      "text-summary"
    ]
  }
}
