-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "@autotelic/fastify-oso",
"version": "0.3.0",
"description": "Plugin for fastify",
"main": "index.js",
"types": "types/index.d.ts",
"type": "module",
"files": [
"index.js",
"types/index.d.ts"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint .",
"test": "tap",
"test:types": "tsd",
"validate": "npm run lint && npm test && npm run test:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-oso.git"
},
"keywords": [],
"author": "Autotelic Development Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-oso/issues"
},
"homepage": "https://github.com/autotelic/fastify-oso#readme",
"dependencies": {
"fastify-plugin": "^4.5.1",
"oso": "^0.27.3"
},
"devDependencies": {
"@autotelic/eslint-config-js": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"fastify": "^4.25.2",
"fastify-cli": "^6.0.1",
"tap": "^18.6.1",
"tsd": "^0.30.4",
"typescript": "^5.3.3"
},
"tsd": {
"directory": "types"
}
}