-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 879 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
{
"name": "use-form-data",
"version": "1.0.2",
"description": "When creating forms with React, updating an object's values can be fiddly, this hook makes it easy.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/index.js --out-file index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opr/use-form-data.git"
},
"keywords": [
"react",
"hooks",
"forms"
],
"author": "Thomas Roberts",
"license": "ISC",
"bugs": {
"url": "https://github.com/opr/use-form-data/issues"
},
"homepage": "https://github.com/opr/use-form-data#readme",
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4"
}
}