-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "simpleform",
"version": "0.1.3",
"author": "Roman Nosov <[email protected]>",
"description": "Probably the simplest React form generator you've ever seen",
"license": "MIT",
"keywords": [
"react",
"simple",
"form",
"autoform",
"generator",
"bootstrap",
"bootstrap4",
"bs4"
],
"repository": {
"type": "git",
"url": "https://github.com/rnosov/simpleform"
},
"bugs": {
"url": "https://github.com/rnosov/simpleform/issues"
},
"homepage": "https://github.com/rnosov/simpleform",
"main": "./dist/index.js",
"dependencies": {
"babel-runtime": "^6.11.6",
"immutable": "^3.8.1",
"react-overlays": "^0.6.6",
"underscore.string": "^3.3.4"
},
"peerDependencies": {
"react": "^15.3.1",
"bootstrap": "^4.0.0-alpha.4"
},
"devDependencies": {
"react": "^15.3.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.11.4",
"babel-jest": "^15.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^4.0.0-alpha.4",
"enzyme": "^2.4.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-uglify": "^2.0.0",
"jest-cli": "^15.1.0",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"uglify-js": "^2.7.3"
},
"scripts": {
"build": "./node_modules/gulp/bin/gulp.js build",
"test": "jest .",
"prepublish": "npm run build && npm run test -- -u;"
}
}