-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
33 lines (33 loc) · 1.13 KB
/
deno.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
{
"name": "@findhow/zod-factory",
"version": "0.0.2",
"description": "A library for generating mock data based on a Zod schema",
"license": "MIT",
"repository": "https://github.com/zhorton34/zod-factory",
"homepage": "https://github.com/zhorton34/zod-factory",
"bugs": "https://github.com/zhorton34/zod-factory/issues",
"author": "Zak H <[email protected]>",
"exports": "./mod.ts",
"compilerOptions": {
"strict": true
},
"lint": {
"include": ["factory/*.ts", "./factory/zod-mock/*.ts"]
},
"tasks": {
"test": "deno test --allow-all",
"fmt": "deno fmt",
"lint": "deno lint",
"build": "deno compile --target=deno --output=./dist/mod.ts ./mod.ts",
"bench": "deno bench --allow-all",
"run": "deno run --allow-all ./mod.ts",
"coverage": "deno test --coverage",
"docs": "deno doc --allow-all ./mod.ts"
},
"imports": {
"@std/randexp": "npm:[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/faker": "npm:@faker-js/[email protected]",
"@std/zod": "npm:[email protected]"
}
}