forked from emersonlaurentino/formal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 970 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
37
38
39
{
"version": "0.1.3",
"name": "@kevinwolf/formal-web",
"author": "Kevin Wolf <[email protected]>",
"description": "Elegant form management primitives for the react hooks era",
"license": "MIT",
"homepage": "https://github.com/kevinwolfcr/formal#readme",
"repository": "https://github.com/kevinwolfcr/formal",
"bugs": "https://github.com/kevinwolfcr/formal/issues",
"main": "lib/formal-web.js",
"types": "lib/formal-web.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf ./lib",
"build": "tsc",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@kevinwolf/formal": "^0.1.3"
},
"peerDependencies": {
"react": ">=16.8",
"yup": "*"
},
"devDependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hooks-testing-library": "^0.4.0"
}
}