-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "react-happy-form-yup",
"version": "1.0.0",
"description": "React Happy Form Yup Validate Adapter",
"repository": {
"type": "git",
"url": "git+https://github.com/react-earth/react-happy-form-yup.git"
},
"keywords": [],
"author": "godtail",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-earth/react-happy-form-yup/issues"
},
"homepage": "https://github.com/react-earth/react-happy-form-yup#readme",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && rollup -c && rimraf dist/types",
"prepublishOnly": "npm run build",
"test": "jest"
},
"peerDependencies": {
"react-happy-form": ">=1.0.0",
"yup": ">=1.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/jest": "^29.1.0",
"babel-jest": "^29.1.0",
"jest": "^29.0.3",
"react-happy-form": "^1.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-node-externals": "^5.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"yup": "^1.0.0"
}
}