From ea2ef0687475a622898acb9e7544a231734bdc3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vesa=20Poikaj=C3=A4rvi?= Date: Fri, 24 Oct 2014 10:20:18 +0700 Subject: [PATCH] Sort deps for better npm install --save experience Template should keep deps sorted, otherwise when users use npm install --save the get a messed up diff because --save will sort the deps. --- package.json | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/package.json b/package.json index d6df7f5..92d1edb 100644 --- a/package.json +++ b/package.json @@ -19,28 +19,28 @@ "coffee-script": "~1.7.1" }, "devDependencies": { - "gulp-uglify": "~0.1.0", - "gulp-util": "~2.2.17", - "gulp-stylus": "1.3.3", - "gulp-jade": "~0.6.0", - "gulp-livereload": "~2.1.0", "bower": "~1.3.5", - "gulp-autoprefixer": "0.0.7", "browserify": "~4.1.11", - "gulp-streamify": "0.0.5", - "vinyl-source-stream": "~0.1.1", + "browserify-shim": "~3.8.0", "coffeeify": "~0.7.0", - "karma": "~0.12.21", - "karma-jasmine": "~0.1.5", - "karma-chrome-launcher": "~0.1.4", - "karma-coffee-preprocessor": "~0.2.1", - "gulp": "~3.8.1", - "watchify": "~0.10.2", - "ecstatic": "~0.5.3", - "gulp-minify-css": "~0.3.5", "deamdify": "^0.1.1", "debowerify": "~0.8.2", - "browserify-shim": "~3.8.0" + "ecstatic": "~0.5.3", + "gulp": "~3.8.1", + "gulp-autoprefixer": "0.0.7", + "gulp-jade": "~0.6.0", + "gulp-livereload": "~2.1.0", + "gulp-minify-css": "~0.3.5", + "gulp-streamify": "0.0.5", + "gulp-stylus": "1.3.3", + "gulp-uglify": "~0.1.0", + "gulp-util": "~2.2.17", + "karma": "~0.12.21", + "karma-chrome-launcher": "~0.1.4", + "karma-coffee-preprocessor": "~0.2.1", + "karma-jasmine": "~0.1.5", + "vinyl-source-stream": "~0.1.1", + "watchify": "~0.10.2" }, "browser": {}, "browserify-shim": {},