-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "@geut/fastify-response-validation",
"version": "1.0.0",
"description": "A simple plugin that enables response validation for Fastify.",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./src/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "esbuild src/index.js --bundle --format=cjs --target=es2022 --platform=node --outfile=./dist/index.cjs --sourcemap=inline",
"test": "uvu",
"posttest": "npm run lint",
"lint": "standard",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"fastify-plugin": "^4.5.0"
},
"devDependencies": {
"esbuild": "^0.17.17",
"fastify": "^4.15.0",
"standard": "^17.0.0",
"uvu": "^0.5.3"
},
"standard": {
"env": [
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/fastify-response-validation.git"
},
"keywords": [
"fastify",
"geut",
"response",
"validation"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/fastify-response-validation/issues"
},
"homepage": "https://github.com/geut/fastify-response-validation#readme",
"publishConfig": {
"access": "public"
}
}