-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 994 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
44
45
{
"name": "fastify-auth0",
"version": "1.1.0",
"description": "Auth0 authentication for Fastify apps",
"main": "plugin.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tap 'test/**/*.test.js'"
},
"author": "Charles Read",
"license": "MIT",
"devDependencies": {
"abstract-cache": "^1.0.1",
"fastify": "1.1.1",
"fastify-caching": "^3.0.0",
"fastify-cookie": "^2.0.0",
"fastify-server-session": "^2.0.0",
"request": "^2.83.0",
"tap": "^11.1.2"
},
"dependencies": {
"auth0": "^2.9.1",
"debug": "^3.1.0",
"deep-extend": "^0.5.0",
"fastify-plugin": "^0.2.2",
"randomatic": "^3.0.0"
},
"keywords": [
"fastify",
"auth0",
"auth",
"authentication",
"oauth"
],
"bugs": {
"url": "https://github.com/charlesread/fastify-auth0/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/charlesread/fastify-auth0"
}
}