mirror of
https://github.com/koodiklinikka/koodiklinikka.fi.git
synced 2026-01-26 11:23:58 +00:00
browserify shim is actually useless now when debowerify is one of the transforms. If a bower package for example doesn't have a 'main' field defined it's still possible to include it by requiring the main file like require('bad-bower-lib/dist/bad-bower')
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "gulp-template",
|
|
"version": "1.0.0",
|
|
"description": "Project template for gulp.js",
|
|
"author": "Riku Rouvila <riku.rouvila@leonidasoy.fi>",
|
|
"license": "MIT",
|
|
"main": "gulpfile.js",
|
|
"scripts": {
|
|
"prepublish": "bower install",
|
|
"start": "gulp",
|
|
"build": "gulp build",
|
|
"test": "karma start test/karma.conf.js"
|
|
},
|
|
"keywords": [
|
|
"gulp",
|
|
"template"
|
|
],
|
|
"dependencies": {
|
|
"coffee-script": "~1.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"bower": "~1.3.5",
|
|
"browserify": "~6.1.0",
|
|
"chalk": "~0.5.1",
|
|
"coffeeify": "~0.7.0",
|
|
"deamdify": "^0.1.1",
|
|
"debowerify": "~0.9.1",
|
|
"ecstatic": "~0.5.3",
|
|
"gulp": "~3.8.1",
|
|
"gulp-autoprefixer": "1.0.1",
|
|
"gulp-jade": "~0.9.0",
|
|
"gulp-livereload": "~2.1.0",
|
|
"gulp-minify-css": "~0.3.5",
|
|
"gulp-streamify": "0.0.5",
|
|
"gulp-stylus": "1.3.3",
|
|
"gulp-uglify": "~1.0.1",
|
|
"gulp-util": "~3.0.1",
|
|
"karma": "~0.12.21",
|
|
"karma-chrome-launcher": "~0.1.4",
|
|
"karma-cli": "0.0.4",
|
|
"karma-coffee-preprocessor": "~0.2.1",
|
|
"karma-jasmine": "~0.2.2",
|
|
"pretty-hrtime": "~0.2.2",
|
|
"vinyl-source-stream": "~1.0.0",
|
|
"watchify": "~2.0.0"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"coffeeify",
|
|
"debowerify",
|
|
"deamdify"
|
|
]
|
|
}
|
|
}
|