forked from justinlettau/azure-ad-verify-token
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.73 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
70
71
72
{
"name": "azure-ad-verify-token",
"version": "2.0.0",
"description": "Verify JWT issued by Azure Active Directory B2C.",
"keywords": [
"azure",
"ad",
"b2c",
"jwt",
"verify",
"token"
],
"author": {
"name": "Justin Lettau",
"email": "[email protected]",
"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",
"release": "standard-version",
"format": "prettier --write ."
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"nock": "^13.1.4",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.5",
"rsa-pem-from-mod-exp": "^0.8.4"
}
}