-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "fastify-jwt-webapp",
"version": "0.11.0",
"description": "JWT for fastify webapps",
"main": "plugin.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "tap --cov test/*.js"
},
"author": "Charles Read <[email protected]>",
"repository": "https://github.com/charlesread/fastify-jwt-webapp",
"bugs": "https://github.com/charlesread/fastify-jwt-webapp/issues",
"keywords": [
"fastify",
"auth0",
"jwt",
"authentication",
"auth",
"sso"
],
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"better-ajv-errors": "^0.6.7",
"deep-extend": "^0.6.0",
"fastify": "^3.3.0",
"fastify-cookie": "^4.0.2",
"fastify-plugin": "^2.3.2",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.9.0",
"moment": "^2.27.0",
"request": "^2.88.2",
"url-pattern": "^1.0.3"
},
"devDependencies": {
"fastify-tls-keygen": "^1.1.0",
"nock": "^13.0.4",
"pem": "^1.14.4",
"pem-jwk": "^2.0.0",
"pino-pretty": "^4.1.0",
"request-promise": "^4.2.6",
"tap": "^14.10.8"
}
}