-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
54 lines (54 loc) · 1.17 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
{
"name": "get-jwks",
"version": "9.0.2",
"description": "Fetch utils for JWKS keys",
"main": "src/get-jwks.js",
"types": "./src/get-jwks.d.ts",
"files": [
"src"
],
"engines": {
"node": ">=20"
},
"tsd": {
"directory": "./test/types"
},
"scripts": {
"test": "tap test/*.spec.js && tsd",
"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": "^11.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@fastify/jwt": "^8.0.0",
"@types/node": "^22.0.0",
"@types/node-fetch": "^2.6.2",
"eslint": "^8.6.0",
"fast-jwt": "^4.0.0",
"fastify": "^4.0.3",
"jsonwebtoken": "^9.0.0",
"nock": "^13.0.7",
"prettier": "^3.0.0",
"sinon": "^19.0.2",
"tap": "^16.0.0",
"tsd": "^0.31.0",
"typescript": "^5.0.2"
}
}