-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "fastify-enforce-schema",
"url": "",
"author": "Aleksandar Grbic - (https://programmer.network)",
"version": "1.1.0",
"contributors": [
"Kirill Tregubov <[email protected]> (https://kirilltregubov.com)"
],
"description": "Enforce AJV schemas across your endpoints.",
"repository": {
"type": "git",
"url": "git+https://github.com/agjs/fastify-enforce-schema.git"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage": "tap --cov --coverage-report=html test",
"lint": "npm run lint:standard",
"lint:fix": "standard --fix",
"lint:standard": "standard",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/*.ts",
"test": "npm run unit && npm run typescript",
"test:ci": "npm run lint && tap test/*.test.js --coverage-report=lcovonly && npm run typescript",
"typescript": "tsd",
"unit": "tap test/*.test.js"
},
"license": "MIT",
"dependencies": {
"fastify-plugin": "^4.5.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"fastify": "4.16.0",
"standard": "^17.0.0",
"tap": "^16.3.4",
"tsd": "^0.28.1",
"typescript": "^5.0.4"
},
"keywords": [
"fastify",
"ajv",
"schema",
"enforce-schema"
],
"tsd": {
"directory": "test"
},
"pre-commit": [
"lint",
"test"
]
}