Skip to content

Instantly share code, notes, and snippets.

@lishiyo
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lishiyo/47b76bd7c1c202a46bc9 to your computer and use it in GitHub Desktop.
Save lishiyo/47b76bd7c1c202a46bc9 to your computer and use it in GitHub Desktop.
Package.json Boilerplate
{
"name": "app",
"version": "1.0.0",
"description": "do all development work here",
"main": "gulpfile.js",
"directories": {
"test": "test"
},
"devDependencies": {
"browserify": "^9.0.4",
"browserify-shim": "^3.8.3",
"chai": "^2.2.0",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^2.1.0",
"gulp-bower": "*",
"gulp-browserify": "^0.5.1",
"gulp-concat": "^2.5.2",
"gulp-filter": "^2.0.2",
"gulp-jshint": "^1.9.4",
"gulp-load-plugins": "^0.9.0",
"gulp-minify-css": "^1.0.0",
"gulp-mocha-phantomjs": "^0.5.3",
"gulp-rename": "^1.2.0",
"gulp-sass": "^1.3.3",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
"main-bower-files": "^2.6.2",
"mocha": "^2.2.1"
},
"browserify-shim": {
"jquery": "$"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"scripts": {
"test": "mocha"
},
"author": "",
"license": "ISC"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment