Last active
August 29, 2015 14:06
-
-
Save chandu/9a2a2d7b3d9c98154d92 to your computer and use it in GitHub Desktop.
browserify - bootstrap package.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*Code attribution: http://stackoverflow.com/questions/24827964/browserify-with-twitter-bootstrap#answer-24834257*/ | |
| { | |
| "name": "...", | |
| "version": "0.0.1", | |
| "description": "...", | |
| "repository": { | |
| "type": "git", | |
| "url": "..." | |
| }, | |
| "browser": { | |
| "d3js": "./bower_components/d3/d3.min.js", | |
| "select2": "./bower_components/select2/select2.min.js", | |
| "nvd3js": "./bower_components/nvd3/nv.d3.min.js", | |
| "bootstrap": "./node_modules/bootstrap/dist/js/bootstrap.js" | |
| }, | |
| "browserify": { | |
| "transform": [ | |
| "browserify-shim", | |
| "hbsfy" | |
| ] | |
| }, | |
| "browserify-shim": { | |
| "d3js": { | |
| "exports": "d3", | |
| "depends": [ | |
| "jquery:$" | |
| ] | |
| }, | |
| "bootstrap": { | |
| "depends": [ | |
| "jquery:$" | |
| ] | |
| }, | |
| "select2": { | |
| "exports": null, | |
| "depends": [ | |
| "jquery:$" | |
| ] | |
| }, | |
| "nvd3js": { | |
| "exports": "nv", | |
| "depends": [ | |
| "jquery:$", | |
| "d3js:d3" | |
| ] | |
| } | |
| }, | |
| "devDependencies": { | |
| "browserify-shim": "~3.4.1", | |
| "browserify": "~3.36.0", | |
| "coffeeify": "~0.6.0", | |
| "connect": "~2.14.3", | |
| "gulp-changed": "~0.3.0", | |
| "gulp-imagemin": "~0.1.5", | |
| "gulp-notify": "~1.2.4", | |
| "gulp-open": "~0.2.8", | |
| "gulp": "~3.6.0", | |
| "hbsfy": "~1.3.2", | |
| "vinyl-source-stream": "~0.1.1", | |
| "gulp-less": "~1.2.3", | |
| "bower": "~1.3.3", | |
| "cssify": "~0.5.1", | |
| "gulp-awspublish": "0.0.16", | |
| "gulp-util": "~2.2.14", | |
| "gulp-rename": "~1.2.0", | |
| "gulp-s3": "git+ssh://git@github.com/nkostelnik/gulp-s3.git", | |
| "gulp-clean": "~0.2.4", | |
| "process": "~0.7.0" | |
| }, | |
| "dependencies": { | |
| "backbone": "~1.1.2", | |
| "jquery": "~2.1.0", | |
| "lodash": "~2.4.1", | |
| "d3": "~3.4.8", | |
| "rickshaw": "~1.4.6", | |
| "datejs": "~1.0.0-beta", | |
| "moment": "~2.7.0" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment