-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "moleculer-zod-validator",
"version": "3.3.1",
"description": "A validator for the Moleculer microservice framework to allow the use of Zod.",
"author": "TheAppleFreak <TheAppleFreak@gmail.com>",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"build": "tsc -P tsconfig.json",
"clean": "rimraf build",
"prepare": "husky install",
"prettier": "prettier --write \"{src,test}/**/*\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheAppleFreak/moleculer-zod-validator.git"
},
"engines": {
"node": ">=17.0.0"
},
"keywords": [
"moleculer",
"zod",
"validator",
"microservice",
"typescript"
],
"files": [
"build/**/*",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/TheAppleFreak/moleculer-zod-validator/issues"
},
"homepage": "https://github.com/TheAppleFreak/moleculer-zod-validator#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"fastest-validator": "^1.17.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"moleculer": "^0.14.29",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"zod": "^3.21.4"
},
"peerDependencies": {
"moleculer": "0.14.x",
"zod": "3.x.x"
}
}