forked from nearform/get-jwks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 952 Bytes
/
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
{
"name": "get-jwks",
"version": "4.2.0",
"description": "Fetch utils for JWKS keys",
"main": "src/get-jwks.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "tap",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/get-jwks.git"
},
"keywords": [
"jwks",
"jwt"
],
"author": "Filippo De Santis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nearform/get-jwks/issues"
},
"homepage": "https://github.com/nearform/get-jwks#readme",
"dependencies": {
"jwk-to-pem": "^2.0.4",
"lru-cache": "^6.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"eslint": "^7.22.0",
"fast-jwt": "^1.1.2",
"fastify": "^3.12.0",
"fastify-jwt": "^2.3.0",
"jsonwebtoken": "^8.5.1",
"nock": "^13.0.7",
"prettier": "^2.2.1",
"sinon": "^10.0.0",
"tap": "^14.11.0"
}
}