-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "@fastify/response-validation",
"version": "3.0.2",
"description": "A simple plugin that enables response validation for Fastify.",
"main": "index.js",
"type": "commonjs",
"dependencies": {
"@fastify/error": "^4.0.0",
"ajv": "^8.12.0",
"fastify-plugin": "^5.0.1"
},
"types": "types/index.d.ts",
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^22.0.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"c8": "^10.1.2",
"fastify": "^5.0.0",
"standard": "^17.1.0",
"tsd": "^0.31.0"
},
"scripts": {
"lint": "standard",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-response-validation.git"
},
"keywords": [
"fastify",
"validation",
"response",
"json",
"schema"
],
"author": "Tomas Della Vedova",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-response-validation/issues"
},
"homepage": "https://github.com/fastify/fastify-response-validation#readme",
"publishConfig": {
"access": "public"
}
}