forked from SteveVitali/react-form-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "form-generator-react",
"version": "2.0.0",
"description": "Generate, validate, and parse React forms based on arbitrary JSON schemas.",
"main": "index.js",
"browserify": {
"transform": [
"reactify"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/SteveVitali/react-form-generator.git"
},
"author": "Steve Vitali <svitali@seas.upenn.edu> (http://stevevitali.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SteveVitali/react-form-generator/issues"
},
"homepage": "https://github.com/SteveVitali/react-form-generator",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"browserify-resolutions": "^1.1.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"uglify": "^0.1.5",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"dependencies": {
"react-bootstrap": "^0.29.4",
"reactify": "^1.1.1",
"underscore": "^1.8.3"
},
"peerDependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1"
}
}