{
  "name": "@boundstate/hapi-oidc-auth",
  "version": "2.0.0",
  "description": "OpenID Connect auth for Hapi",
  "author": "Bound State Software Inc <info@boundstatesoftware.com>",
  "license": "MIT",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://git.boundstatesoftware.com/boundstate/hapi-oidc-auth.git"
  },
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig.build.json",
    "changelog": "conventional-changelog -p angular --context conventional-changelog.json -i CHANGELOG.md -s",
    "lint": "eslint src --ext .ts",
    "test": "mocha",
    "test-cov": "nyc mocha",
    "version": "npm run changelog && git add CHANGELOG.md"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "**/*.spec.ts"
    ],
    "reporter": [
      "html",
      "text"
    ],
    "all": true
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged && npm run lint && npm run test"
    }
  },
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "@hapi/hapi": ">=17 <19"
  },
  "dependencies": {
    "hapi-auth-bearer-token": "^6.2.1",
    "openid-client": "^3.1.1"
  },
  "devDependencies": {
    "@hapi/hapi": "^18.3.1",
    "@types/chai": "^4.1.7",
    "@types/glob": "^7.1.1",
    "@types/hapi__hapi": "^18.2.4",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.0.8",
    "@types/sinon": "^7.0.13",
    "@types/sinon-chai": "^3.2.2",
    "@typescript-eslint/eslint-plugin": "^1.10.2",
    "@typescript-eslint/parser": "^1.10.2",
    "chai": "^4.2.0",
    "conventional-changelog-cli": "^2.0.21",
    "eslint": "^5.16.0",
    "eslint-config-prettier": "^5.0.0",
    "eslint-plugin-prettier": "^3.1.0",
    "husky": "^2.4.1",
    "mocha": "^6.1.4",
    "nock": "^10.0.6",
    "nyc": "^14.1.1",
    "prettier": "^1.18.2",
    "pretty-quick": "^1.11.1",
    "rimraf": "^2.6.3",
    "sinon": "^7.3.2",
    "sinon-chai": "^3.3.0",
    "source-map-support": "^0.5.12",
    "ts-node": "^8.3.0",
    "typescript": "^3.5.2"
  }
}
