forked from Aquila169/zod-express-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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": "zod-express-middleware",
"version": "1.4.0",
"description": "Express middleware to validate requests using zod schema's.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/Aquila169/zod-express-middleware",
"repository": {
"type": "git",
"url": "https://github.com/Aquila169/zod-express-middleware"
},
"scripts": {
"test": "jest ./src",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write .",
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"express",
"zod",
"middleware",
"endpoint",
"validation"
],
"author": "Casper Schouls",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"express": "^4.17.1",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2",
"zod": "^3.2.0"
},
"peerDependencies": {
"@types/express": "^4.17.12",
"express": "^4.17.1",
"zod": "^3.2.0"
},
"files": [
"lib/**/*"
]
}