Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pmendelski committed Jun 23, 2015
1 parent 95c4e0e commit 2615c86
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
7 changes: 3 additions & 4 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var gulp = require('gulp'),
path = require('path'),
fs = require('fs'),
mkdirp = require('mkdirp'),
clean = require('gulp-clean'),
del = require('del'),
jscs = require('gulp-jscs'),
istanbul = require('gulp-istanbul');

Expand All @@ -28,9 +28,8 @@ function initTestMode() {
};
}

gulp.task('clean', function() {
return gulp.src('build')
.pipe(clean());
gulp.task('clean', function(done) {
del('build', done);
});

gulp.task('jshint', function() {
Expand Down
35 changes: 18 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "Paweł Mendelski <pawel.mendelski@coditorium.com>",
"name": "read-config",
"version": "1.4.2",
"version": "1.5.0",
"description": "Multi format configuration loader",
"main": "index.js",
"license": "MIT",
Expand All @@ -25,30 +25,31 @@
"properties"
],
"dependencies": {
"lodash": "^3.3.1",
"async": "~0.9.0",
"lodash": "^3.9.3",
"async": "~1.2.1",
"json5": "~0.4.0",
"js-yaml": "~3.2.7",
"js-yaml": "~3.3.1",
"properties": "~1.2.1"
},
"devDependencies": {
"chai": "^2.1.1",
"gulp": "~3.8.11",
"chai": "^3.0.0",
"coveralls": "~2.11.2",
"del": "^1.2.0",
"gulp": "~3.9.0",
"gulp-clean": "~0.3.1",
"gulp-istanbul": "~0.6.0",
"gulp-jscs": "^1.4.0",
"gulp-jshint": "~1.9.2",
"gulp-mocha": "~2.0.0",
"gulp-istanbul": "~0.10.0",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "~1.11.0",
"gulp-mocha": "~2.1.2",
"gulp-sync": "~0.1.4",
"gulp-util": "~3.0.4",
"jshint-stylish": "~1.0.1",
"mkdirp": "~0.5.0",
"mocha": "2.1.0",
"mocha-jenkins-reporter": "~0.1.4",
"coveralls": "~2.11.2"
"gulp-util": "~3.0.5",
"jshint-stylish": "~2.0.1",
"mkdirp": "~0.5.1",
"mocha": "2.2.5",
"mocha-jenkins-reporter": "~0.1.9"
},
"engines": {
"node": "0.10.x"
"node": ">=0.10"
},
"analyze": "true"
}

0 comments on commit 2615c86

Please sign in to comment.