-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
69 lines (69 loc) · 1.63 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"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"
}
}