diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index d5e91ff..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,15 +0,0 @@ -var gulp = require('gulp'); -var mocha = require('gulp-mocha'); -var plumber = require('gulp-plumber'); -var gutil = require('gulp-util'); - -gulp.task('test', function() { - gulp.src(['tests/**/*.js', '!tests/fixtures/**/*']) - .pipe(plumber()) - .pipe(mocha({ reporter: 'spec'}) - .on('error', gutil.log)); -}); - -gulp.task('watch:test', function(){ - gulp.watch(['index.js', "tests/**/*"], ["test"]); -}); diff --git a/index.js b/nwire.js similarity index 100% rename from index.js rename to nwire.js diff --git a/package.json b/package.json index 219be30..592ced9 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "nwire", - "version": "0.1.2", + "version": "0.1.3", "description": "Simplified dependency injection in Node.js", - "main": "index.js", + "main": "nwire.js", "scripts": { - "test": "gulp test" + "test": "mocha tests" }, "repository": { "type": "git", @@ -24,10 +24,6 @@ "homepage": "https://github.com/divmgl/nwire#readme", "devDependencies": { "chai": "^3.2.0", - "gulp": "^3.9.0", - "gulp-mocha": "^2.1.3", - "gulp-plumber": "^1.0.1", - "gulp-util": "^3.0.6", "lodash": "^3.10.1", "mocha": "^2.2.5" }