UNPKG

1.03 kBJSONView Raw
1{
2 "name": "fastify-guard",
3 "version": "1.2.2",
4 "description": "a simple user role and scope checker plugin to protect endpoints for Fastify",
5 "main": "src/index.js",
6 "scripts": {
7 "test": "jest --verbose -i test.js -t",
8 "dev": "node example.js",
9 "lint": "npm run lint:standard",
10 "lint:standard": "standard --verbose | snazzy || exit 0"
11 },
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/hsynlms/fastify-guard.git"
15 },
16 "keywords": [
17 "fastify",
18 "guard",
19 "permission",
20 "role",
21 "scope"
22 ],
23 "author": "Huseyin ELMAS",
24 "license": "MIT",
25 "bugs": {
26 "url": "https://github.com/hsynlms/fastify-guard/issues"
27 },
28 "homepage": "https://github.com/hsynlms/fastify-guard#readme",
29 "dependencies": {
30 "fastify-plugin": "^3.0.0",
31 "http-errors": "^1.8.0",
32 "lodash.get": "^4.4.2"
33 },
34 "devDependencies": {
35 "fastify": "^3.15.1",
36 "jest": "^26.6.3",
37 "snazzy": "^9.0.0",
38 "standard": "^16.0.3"
39 }
40}