-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "azure-token-nonce",
"version": "0.1.1",
"description": "Verify token provided by AzureAD with V2 endpoint (compatible with nonce property)",
"keywords": [
"verify",
"azure",
"token",
"nonce"
],
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/d-corler/azure-token-nonce.git"
},
"homepage": "https://github.com/d-corler/azure-token-nonce#readme",
"bugs": {
"url": "https://github.com/d-corler/azure-token-nonce/issues"
},
"author": {
"name": "Damien CORLER",
"url": "https://github.com/d-corler"
},
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"build": "run-s clean build:src",
"build:src": "tsc",
"clean": "rimraf lib/"
},
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"dependencies": {
"base64url": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.11.0",
"sha2": "^1.0.2"
}
}