-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 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
49
50
51
{
"name": "get-jwks",
"version": "11.0.0",
"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": "node --test 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 <filippo.desantis@nearform.com>",
"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.7",
"lru-cache": "^11.0.2"
},
"devDependencies": {
"@fastify/jwt": "^9.0.1",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"fast-jwt": "^5.0.0",
"fastify": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"nock": "^v14.0.0-beta.19",
"prettier": "^3.4.1",
"sinon": "^19.0.2",
"tsd": "^0.31.2",
"typescript": "^5.7.2"
}
}