Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
taoyuan committed Dec 26, 2015
1 parent b939908 commit e2c3e0b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 16 deletions.
6 changes: 0 additions & 6 deletions gulpfile.js
Expand Up @@ -6,7 +6,6 @@ var excludeGitignore = require('gulp-exclude-gitignore');
var mocha = require('gulp-mocha');
var jshint = require('gulp-jshint');
var istanbul = require('gulp-istanbul');
var nsp = require('gulp-nsp');
var plumber = require('gulp-plumber');
var coveralls = require('gulp-coveralls');

Expand All @@ -24,10 +23,6 @@ gulp.task('static', function () {
.on('error', handleErr);
});

gulp.task('nsp', function (cb) {
nsp('package.json', cb);
});

gulp.task('pre-test', function () {
return gulp.src('lib/**/*.js')
.pipe(istanbul({includeUntested: true}))
Expand Down Expand Up @@ -58,5 +53,4 @@ gulp.task('coveralls', ['test'], function () {
.pipe(coveralls());
});

gulp.task('prepublish', ['nsp']);
gulp.task('default', ['static', 'test', 'coveralls']);
19 changes: 9 additions & 10 deletions package.json
Expand Up @@ -18,24 +18,23 @@
],
"dependencies": {
"debug": "^2.2.0",
"path-to-regexp": "^1.2.0"
"path-to-regexp": "^1.2.1"
},
"devDependencies": {
"chai": "^3.2.0",
"chai": "^3.4.1",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.4",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"gulp-nsp": "^0.4.5",
"gulp-istanbul": "^0.10.3",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.0.1",
"jshint-stylish": "^2.0.1",
"mocha": "^2.2.5"
"jshint": "^2.8.0",
"jshint-stylish": "^2.1.0",
"mocha": "^2.3.4"
},
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "MIT"
Expand Down

0 comments on commit e2c3e0b

Please sign in to comment.