-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 888 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 888 Bytes
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": "react-form-values",
"version": "1.0.2",
"description": "Custom React hook that simplifies how you can control the state of form fields using a clean and reasonable syntax",
"main": "index.js",
"scripts": {
"compile": "npx babel --presets @babel/preset-env src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rommelsantor/react-form-values.git"
},
"keywords": [
"react",
"hooks",
"form",
"values",
"controlled",
"managed",
"state"
],
"author": "Rommel Santor",
"license": "MIT",
"bugs": {
"url": "https://github.com/rommelsantor/react-form-values/issues"
},
"homepage": "https://github.com/rommelsantor/react-form-values#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6"
},
"dependencies": {}
}