{
  "name": "azure-ad-verify-token",
  "version": "3.0.3",
  "description": "Verify JWT issued by Azure Active Directory B2C.",
  "keywords": [
    "azure",
    "ad",
    "b2c",
    "jwt",
    "verify",
    "token"
  ],
  "author": {
    "name": "Justin Lettau",
    "email": "me@justinlettau.com",
    "url": "https://justinlettau.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/justinlettau/azure-ad-verify-token",
  "repository": {
    "type": "git",
    "url": "https://github.com/justinlettau/azure-ad-verify-token"
  },
  "bugs": {
    "url": "https://github.com/justinlettau/azure-ad-verify-token/issues"
  },
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "type": "module",
  "exports": "./dist/index.js",
  "types": "dist/index.d.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "lint": "eslint . --ext .js,.ts",
    "test": "jest",
    "build": "tsc -p ./tsconfig.json",
    "prepublishOnly": "npm run build",
    "format": "prettier --write ."
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "devDependencies": {
    "@types/jest": "^29.4.0",
    "@types/jsonwebtoken": "^9.0.1",
    "@typescript-eslint/eslint-plugin": "^5.49.0",
    "@typescript-eslint/parser": "^5.49.0",
    "eslint": "^8.32.0",
    "eslint-config-prettier": "^8.6.0",
    "husky": "^8.0.3",
    "jest": "^29.4.0",
    "nock": "^13.3.0",
    "prettier": "^2.8.3",
    "pretty-quick": "^3.1.3",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.4"
  },
  "dependencies": {
    "jsonwebtoken": "^9.0.0",
    "node-fetch": "^3.3.0",
    "rsa-pem-from-mod-exp": "^0.8.5"
  }
}
