-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 848 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
{
"name": "fastify-jwt-authz",
"version": "0.1.2",
"description": "Validate the JWT scope to authorize access to an endpoint for fastify",
"main": "fastify-jwt-authz.js",
"scripts": {
"test": "standard && tap test.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Ethan-Arrowood/fastify-jwt-authz.git"
},
"keywords": [
"fastify",
"jwt",
"authentication",
"auth0",
"nodejs"
],
"author": "Ethan Arrowood",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ethan-Arrowood/fastify-jwt-authz/issues"
},
"homepage": "https://github.com/Ethan-Arrowood/fastify-jwt-authz#readme",
"dependencies": {
"fastify-plugin": "^0.2.1"
},
"devDependencies": {
"fastify": "^1.1.1",
"request": "^2.83.0",
"standard": "^10.0.3",
"tap": "^11.0.1"
}
}