-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "react-auto-form",
"version": "3.0.0",
"description": "Simplifies getting user input from forms via onChange and onSubmit events",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"build": "npm run lint && nwb build",
"lint": "eslint demo/src src tests",
"lint:fix": "eslint demo/src src tests --fix",
"start": "nwb serve",
"test": "npm run build && nwb test",
"test:watch": "nwb test --server"
},
"dependencies": {
"get-form-data": "3.0.x",
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": ">=0.14.9"
},
"devDependencies": {
"eslint-config-jonnybuchanan": "6.0.x",
"nwb": "0.24.x",
"react": "16.x",
"react-dom": "16.x"
},
"author": "Jonny Buchanan <[email protected]>",
"homepage": "https://github.com/insin/react-auto-form",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/insin/react-auto-form.git"
},
"keywords": [
"react",
"react-component",
"uncontrolled",
"uncontrolled-forms",
"form",
"forms"
]
}