Skip to content

Commit

Permalink
Upgraded deps. Support for node v5/6.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiznool committed May 31, 2016
1 parent 950c07b commit 436a9d2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: node_js
node_js:
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
Expand Down
3 changes: 1 addition & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ module.exports = function (grunt) {
}
}
},
mdlint: ['README.md'],
jshint: {
options: {
bitwise: true,
Expand Down Expand Up @@ -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');

Expand Down
18 changes: 7 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion test/integrationTests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

});
Expand Down

0 comments on commit 436a9d2

Please sign in to comment.