-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "zod-fast-check",
"version": "0.10.1",
"description": "Generate fast-check arbitraries from Zod schemas.",
"main": "dist/zod-fast-check.js",
"types": "dist/zod-fast-check.d.ts",
"scripts": {
"build": "tsc",
"test": "prettier --check src && jest",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"postversion": "git push && git push --tags"
},
"author": "David Timms",
"license": "MIT",
"sideEffects": false,
"files": [
"dist/**/*"
],
"keywords": [
"property-based testing",
"schema",
"unit testing",
"testing",
"validation",
"zod",
"fast-check",
"fastcheck"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DavidTimms/zod-fast-check.git"
},
"bugs": {
"url": "https://github.com/DavidTimms/zod-fast-check/issues"
},
"homepage": "https://github.com/DavidTimms/zod-fast-check",
"devDependencies": {
"@types/jest": "^28.1.6",
"fast-check": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.7.4",
"zod": "^3.20.5"
},
"peerDependencies": {
"fast-check": ">2.23.0 <4.0.0",
"zod": "^3.18.0"
}
}