diff --git a/.travis.yml b/.travis.yml index 24e68b5..295b3de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ language: node_js node_js: + - "6" + - "5" - "4" - "0.12" - "0.10" diff --git a/Gruntfile.js b/Gruntfile.js index 6b5bedb..2dfbe97 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -16,7 +16,6 @@ module.exports = function (grunt) { } } }, - mdlint: ['README.md'], jshint: { options: { bitwise: true, @@ -62,7 +61,7 @@ module.exports = function (grunt) { }); grunt.registerTask('default', ['node-inspector:custom']); - grunt.registerTask('test', ['jshint', 'simplemocha', 'mdlint']); + grunt.registerTask('test', ['jshint', 'simplemocha']); grunt.loadTasks('tasks'); diff --git a/package.json b/package.json index 5b007eb..cd8ab6c 100644 --- a/package.json +++ b/package.json @@ -18,20 +18,16 @@ }, "author": "ChrisWren", "license": "MIT", - "peerDependencies": { - "grunt": ">=0.4.0" - }, "devDependencies": { - "grunt": "^0.4.5", - "grunt-release": "^0.13.0", - "grunt-contrib-jshint": "^0.11.2", - "matchdep": "^1.0.0", - "grunt-mdlint": "0.0.1", - "should": "^7.1.0", - "grunt-simple-mocha": "^0.4.0", + "grunt": ">=0.4.0", + "grunt-release": "^0.13.1", + "grunt-contrib-jshint": "^1.0.0", + "matchdep": "^1.0.1", + "should": "^9.0.0", + "grunt-simple-mocha": "^0.4.1", "win-spawn": "^2.0.0" }, "dependencies": { - "node-inspector": "^0.12.3" + "node-inspector": "^0.12.8" } } diff --git a/test/integrationTests.js b/test/integrationTests.js index 60b1b9c..c980c83 100644 --- a/test/integrationTests.js +++ b/test/integrationTests.js @@ -29,7 +29,7 @@ describe('grunt-node-inspector', function () { }); it('should log that the server started', function () { - logOutput.should.containEql('Visit http://localhost:1337/?ws=localhost:1337&port=5857'); + logOutput.should.containEql('Visit http://localhost:1337/?port=5857'); }); });