-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 2.64 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@inaiat/fastify-papr",
"version": "8.0.1",
"description": "Fastify Papr Plugin Integration",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"ts:loader": "FASTIFY_AUTOLOAD_TYPESCRIPT=true node --import=tsx/esm",
"test": "pnpm ts:loader --test tests/*.ts",
"build": "rimraf ./dist && mkdir dist && tsup && git rev-parse HEAD > BUILD_SHA",
"format": "dprint fmt",
"lint": "dprint check && eslint",
"coverage": "pnpm lint && c8 pnpm test",
"prepublishOnly": "npm run build",
"make-badges": "istanbul-badges-readme",
"check-commit": "pnpm lint && pnpm test",
"prepare": "husky || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inaiat/fastify-papr.git"
},
"keywords": [
"fastify",
"mongodb",
"papr",
"database",
"model",
"schema",
"json",
"json-schema",
"validation",
"typescript",
"types"
],
"contributors": [
"Inaiat <[email protected]>",
"Daniel Molina <[email protected]>",
"Murilo Alves <[email protected]>"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"homepage": "https://github.com/inaiat/fastify-papr.git",
"dependencies": {
"fastify-plugin": ">=4.5",
"papr": "^15.2.2"
},
"peerDependencies": {
"fastify": "^5.0.0",
"mongodb": "6.7"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/node": "^22.7.0",
"@types/semver": "^7.5.8",
"c8": "10.1.2",
"dprint": "^0.47.2",
"eslint": "^9.11.1",
"eslint-plugin-functional": "^7.0.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.6",
"istanbul-badges-readme": "^1.9.0",
"mongodb": "6.7",
"mongodb-memory-server": "^10.0.1",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"files": [
"dist"
],
"directories": {
"test": "test"
},
"tsup": {
"dts": true,
"clean": true,
"bundle": true,
"treeshake": true,
"target": "node20",
"format": [
"esm",
"cjs"
],
"entry": [
"src/**/*.ts"
]
},
"c8": {
"reporter": [
"text",
"json-summary",
"lcov"
]
},
"config": {
"mongodbMemoryServer": {
"debug": "0"
}
},
"author": "[email protected]"
}