From 53fc1499b66be94509c5c0a6939479370a9fe686 Mon Sep 17 00:00:00 2001 From: Davert Date: Sun, 22 Nov 2015 03:32:59 +0200 Subject: [PATCH] removed unused stuff --- gulpfile.js | 6 ------ package.json | 3 --- 2 files changed, 9 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 8c999a9af..eaab3fce0 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -4,7 +4,6 @@ var eslint = require('gulp-eslint'); var excludeGitignore = require('gulp-exclude-gitignore'); var mocha = require('gulp-mocha'); var istanbul = require('gulp-istanbul'); -var nsp = require('gulp-nsp'); var plumber = require('gulp-plumber'); var coveralls = require('gulp-coveralls'); var documentation = require('gulp-documentation'); @@ -25,10 +24,6 @@ gulp.task('static', function () { .pipe(eslint.failAfterError()); }); -gulp.task('nsp', function (cb) { - nsp('package.json', cb); -}); - gulp.task('pre-test', function () { return gulp.src('lib/**/*.js') .pipe(istanbul({ @@ -60,5 +55,4 @@ gulp.task('coveralls', ['test'], function () { .pipe(coveralls()); }); -gulp.task('prepublish', ['nsp']); gulp.task('default', ['static', 'test', 'coveralls']); diff --git a/package.json b/package.json index 3404ce4d9..6e74653f3 100644 --- a/package.json +++ b/package.json @@ -26,9 +26,7 @@ "commander": "^2.9.0", "glob": "^6.0.1", "inquirer": "^0.11.0", - "inquirer-autocomplete-prompt": "^0.1.3", "mocha": "^2.3.3", - "readline2": "^1.0.1", "webdriverio": "^3.2.5" }, "devDependencies": { @@ -40,7 +38,6 @@ "gulp-exclude-gitignore": "^1.0.0", "gulp-istanbul": "^0.9.0", "gulp-mocha": "^2.0.0", - "gulp-nsp": "^0.4.5", "gulp-plumber": "^1.0.0" }, "scripts": {