-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
{
"name": "fastify-jwt-jwks",
"version": "2.0.0",
"description": "JWT JWKS verification plugin for Fastify",
"author": "NearForm Ltd",
"homepage": "https://github.com/nearform/fastify-jwt-jwks",
"contributors": [
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
},
{
"name": "Simone Busoli",
"email": "[email protected]",
"url": "https://github.com/simoneb"
}
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"keywords": [
"fastify",
"fastify-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/fastify-jwt-jwks.git"
},
"bugs": {
"url": "https://github.com/nearform/fastify-jwt-jwks/issues"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "node --test",
"test:ci": "npm run lint && npm run test && npm run test:types",
"test:types": "tsd",
"lint": "eslint index.js test test-integration"
},
"dependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/jwt": "^9.0.1",
"fastify-plugin": "^5.0.1",
"http-errors": "^2.0.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-jwt": "^5.0.0",
"fastify": "^5.1.0",
"jest": "^29.7.0",
"nock": "^14.0.0-beta.19",
"oauth2-mock-server": "^7.2.0",
"prettier": "^3.4.1",
"tsd": "^0.31.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">= 20"
}
}