-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.87 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
64
65
66
67
68
{
"name": "zod-express-guard",
"version": "1.0.7",
"description": "Zod middleware generator for type safe request validation",
"main": "dist/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "mocha test/**/*.test.ts -r ts-node/register",
"build": "tsc",
"clean": "rm -rf tsconfig.tsbuildinfo dist",
"build:clean": "npm run clean && npm run build",
"prepublishOnly": "npm test && npm run build:clean && rm -rf dist/*.map dist/**/*.map && npm run shields",
"pretest": "npm run build:clean",
"lint": "eslint src/**/*.ts",
"shields": "all-shields-generate"
},
"author": "Roz <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@ptkdev/all-shields-cli": "^2.0.2",
"@types/chai": "^4.3.4",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "^4.3.7",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"gitmoji-cli": "^8.1.1",
"mocha": "^10.2.0",
"prettier": "^2.8.7",
"sinon": "^15.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"zod": "^3.22.3"
},
"peerDependencies": {
"@types/express": "^4.17.17",
"express": "^4.18.2",
"zod": "^3.22.3"
},
"files": [
"dist"
],
"keywords": [
"zod",
"express",
"middleware",
"types",
"validation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/roziscoding/zod-express-guard.git"
},
"bugs": {
"url": "https://github.com/roziscoding/zod-express-guard/issues"
},
"homepage": "https://github.com/roziscoding/zod-express-guard"
}