-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 961 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
{
"name": "fastify-esso",
"version": "1.3.5",
"description": "Fastify plugin for easy single sign-on",
"main": "lib/index.js",
"scripts": {
"test": "tap lib/*.test.js --coverage-report=lcov --no-browser --show-full-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickpissurno/fastify-esso.git"
},
"keywords": [
"fastify",
"easy",
"single",
"sign",
"on",
"auth",
"login",
"authentication",
"fast",
"jwt"
],
"author": "Patrick Pissurno",
"license": "MIT",
"bugs": {
"url": "https://github.com/patrickpissurno/fastify-esso/issues"
},
"homepage": "https://github.com/patrickpissurno/fastify-esso#readme",
"dependencies": {
"fastify": "^3.29.5",
"fastify-plugin": "^3.0.1",
"http-errors": "^2.0.0"
},
"devDependencies": {
"fastify-cookie": "^5.7.0",
"tap": "^21.0.1"
},
"overrides": {
"cookie@^0.5.0": "0.7.2"
}
}