-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "fastify-guard",
"version": "3.0.1",
"description": "A simple user role and scope checker plugin to protect endpoints for Fastify",
"main": "src/index.js",
"scripts": {
"test": "jest --verbose -i test.js -t",
"dev": "node example.js",
"lint": "standard --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsynlms/fastify-guard.git"
},
"keywords": [
"fastify",
"guard",
"permission",
"role",
"scope",
"api",
"protection"
],
"author": "Huseyin ELMAS",
"license": "MIT",
"bugs": {
"url": "https://github.com/hsynlms/fastify-guard/issues"
},
"homepage": "https://github.com/hsynlms/fastify-guard#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"http-errors": "^2.0.0"
},
"devDependencies": {
"@types/http-errors": "^2.0.4",
"fastify": "^5.0.0",
"jest": "^29.7.0",
"standard": "^17.0.0",
"tsd": "^0.31.2"
},
"types": "types",
"standard": {
"ignore": [
"/types"
]
}
}