-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.54 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": "fastify-split-validator",
"version": "4.0.0",
"description": "Validate each HTTP body message part and Queryparams with different AJV schemas",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tap --cov test/*.test.js && npm run typescript",
"test:ci": "tap --cov test/*.test.js && npm run typescript && npm run lint",
"test:only": "tap --only",
"test:unit": "tap test/*.test.js",
"lint": "standard | snazzy",
"lint:ci": "standard",
"typescript": "tsd",
"release": "npx standard-version"
},
"engines": {
"node": ">=18.x"
},
"keywords": [
"fastify",
"ajv",
"validator",
"fastify-split-validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MetCoder95/fastify-split-validator.git"
},
"readme": "https://github.com/MetCoder95/fastify-split-validator/blob/main/README.md",
"bugs": {
"url": "https://github.com/MetCoder95/fastify-split-validator/issues"
},
"author": "MetCoder95 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"fastify": "^4.6.0",
"husky": "^9.0.11",
"proxyquire": "^2.1.3",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.31.0",
"typescript": "^5.0"
},
"dependencies": {
"ajv": "^8.11.0",
"fastify-plugin": "^5.0.1"
},
"tsd": {
"directory": "test"
},
"tap": {
"check-coverage": false
},
"standard": {
"ignore": [
"*.d.ts",
"*.test-d.ts"
]
}
}