-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 911 Bytes
/
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
{
"name": "zod-mocking",
"private": false,
"version": "0.2.1",
"license": "MIT",
"description": "Generate valid or invalid mocks for your tests, directly from your zod models",
"main": "fields.js",
"author": {
"name": "William Di Pasquale",
"email": "wdp@dipasqualew.com",
"url": "https://dipasqualew.com"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/uuid": "^8.3.0",
"eslint": "^7.28.0",
"eslint-config-dipasqualew": "^1.1.1",
"jest": "^26.6.3",
"superjson": "^1.7.4",
"ts-jest": "^26.5.6",
"typescript": "^4.2.3"
},
"scripts": {
"build:compile": "tsc",
"build:package": "cp .gitignore package.json README.md LICENSE ./dist",
"build": "yarn build:compile && yarn build:package",
"lint": "yarn eslint .",
"test": "jest --colors"
},
"dependencies": {
"uuid": "^8.3.2",
"zod": "^3.0.0-alpha.33"
}
}