forked from amazingandyyy/use-form-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 982 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
40
41
42
43
{
"name": "use-form-react",
"version": "0.0.2",
"description": "The most unopinionated react from hook.",
"main": "dist/index.js",
"keywords": [
"react hook",
"react-hook",
"use",
"hook",
"react",
"form"
],
"repository": {
"type": "git",
"url": "https://github.com/amazingandyyy/use-form-react.git"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"parcel-bundler": "^1.12.3",
"react-dom": "^16.8.6"
},
"scripts": {
"dev:basic": "parcel examples/basic/index.html --open",
"dev:advance": "parcel examples/advance/index.html --open",
"build": "parcel build --target node ./src/*",
"test": "jest",
"publish": "npm run build && npm publish"
},
"files": [
"dist"
]
}