UNPKG

azure-ad-verify-token-commonjs

Version:
72 lines (71 loc) 1.83 kB
{ "name": "azure-ad-verify-token-commonjs", "version": "2.0.2", "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" }, "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", "release": "standard-version", "format": "prettier --write ." }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged" } }, "devDependencies": { "@types/jest": "^28.1.6", "@types/jsonwebtoken": "^8.5.5", "@types/node-fetch": "^2.5.12", "@typescript-eslint/eslint-plugin": "^5.30.6", "@typescript-eslint/parser": "^5.30.6", "eslint": "^8.19.0", "eslint-config-prettier": "^8.5.0", "husky": "^8.0.1", "jest": "^28.1.3", "nock": "^13.2.8", "prettier": "^2.7.1", "pretty-quick": "^3.1.3", "standard-version": "^9.5.0", "ts-jest": "^28.0.6", "ts-node": "^10.9.1", "typescript": "^4.7.4" }, "dependencies": { "jsonwebtoken": "^8.5.1", "node-fetch": "^2.6.5", "rsa-pem-from-mod-exp": "^0.8.4" } }