-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
36 lines (36 loc) · 919 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
35
36
{
"name": "zod-formik-adapter",
"version": "1.1.0",
"description": "An adapter of zod object validation to Formik validation schema",
"main": "./dist/index.js",
"author": "Matheus Robert Lichtnow <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robertLichtnow/zod-formik-adapter"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"test:ci": "jest --ci --coverage",
"build:clean": "rm -rf dist && yarn build"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"formik": "~2.2.9",
"jest": "^27.0.6",
"react": "~17.0.2",
"semantic-release": "^17.4.5",
"ts-jest": "^27.0.4",
"typescript": "~4.6.3",
"zod": "^3.22.4"
},
"peerDependencies": {
"formik": "^2.2.9",
"zod": "^3.22.4"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}