-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
51
52
53
54
55
56
{
"name": "fastify-casbin-rest",
"version": "4.0.0",
"description": "Plugin for fastify to add support for Casbin REST model",
"main": "plugin.js",
"types": "plugin.d.ts",
"scripts": {
"test": "node --test && npm run typescript",
"lint": "standard | snazzy",
"lint:fix": "standard --fix | snazzy",
"typescript": "tsd"
},
"precommit": [
"lint",
"test"
],
"tsd": {
"directory": "test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nearform/fastify-casbin-rest.git"
},
"keywords": [
"fastify",
"casbin",
"rest"
],
"author": "Simone Busoli <simone.busoli@nearform.com>",
"contributors": [
{
"name": "Igor Savin",
"email": "kibertoad@gmail.com",
"web": "https://twitter.com/kibertoad"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nearform/fastify-casbin-rest/issues"
},
"homepage": "https://github.com/nearform/fastify-casbin-rest#readme",
"dependencies": {
"fastify-plugin": "^5.0.1",
"http-errors": "^2.0.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"fastify": "^5.1.0",
"pre-commit": "^1.2.2",
"sinon": "^19.0.2",
"snazzy": "^9.0.0",
"standard": "^17.1.2",
"tsd": "^0.31.2",
"typescript": "^5.7.2"
}
}