-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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": "newforms-bootstrap",
"description": "Bootstrap integration for newforms",
"version": "2.0.0",
"main": "./lib/index.js",
"standalone": "BootstrapForm",
"homepage": "https://github.com/insin/newforms-bootstrap",
"license": "MIT",
"author": "Jonny Buchanan <jonathan.buchanan@gmail.com>",
"dependencies": {
"envify": "^3.3.0"
},
"peerDependencies": {
"newforms": ">=0.12.0",
"react": ">=0.13.0"
},
"devDependencies": {
"browserify": "^9.0.3",
"browserify-shim": "^3.8.3",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.9.2",
"gulp-plumber": "^1.0.0",
"gulp-react": "^3.0.0",
"gulp-rename": "^1.2.0",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
"jshint-stylish": "^1.0.1",
"newforms": ">=0.12.0",
"react": ">=0.13.0",
"tape": "^3.5.0",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"debug": "gulp --debug",
"dist": "gulp bundle-js --production --release && gulp bundle-js --development --release",
"test": "gulp transpile-js && tape test/*.js",
"watch": "gulp"
},
"browserify-shim": {
"react": "global:React",
"newforms": "global:forms"
},
"repository": {
"type": "git",
"url": "http://github.com/insin/newforms-bootstrap.git"
},
"browserify": {
"transform": [
"envify"
]
},
"keywords": [
"forms",
"layout",
"react",
"newforms",
"bootstrap"
]
}