diff --git a/.travis.yml b/.travis.yml index d7eb346..e4d9c61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,10 @@ sudo: false language: node_js node_js: - "4" - - "5" - "6" + - "7" before_script: - npm install -g grunt-cli - - sleep 15 - mongo test_db --eval 'db.addUser("travis", "test");' notifications: email: diff --git a/Gruntfile.js b/Gruntfile.js index d01bcd7..985e5cc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,9 +13,7 @@ module.exports = function(grunt) { jscs: { src: ['*.js', 'src/**/*.js', 'test/**/*.js'], options: { - config: ".jscsrc", - esnext: true, // If you use ES6 http://jscs.info/overview.html#esnext - verbose: true, // If you need output with rule names http://jscs.info/overview.html#verbose + config: ".jscsrc" } }, diff --git a/package.json b/package.json index 9c889fc..6b999f7 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "mongodb": "^2.1.20", "nodemailer": "^2.4.2", "nodemailer-openpgp": "^1.0.2", - "npmlog": "^2.0.4", + "npmlog": "^4.0.2", "openpgp": "^2.3.0" }, "devDependencies": { @@ -32,10 +32,10 @@ "co-mocha": "^1.1.2", "grunt": "^1.0.1", "grunt-contrib-jshint": "^1.0.0", - "grunt-jscs": "^2.8.0", - "grunt-mocha-test": "^0.12.7", - "mocha": "^2.5.3", + "grunt-jscs": "^3.0.1", + "grunt-mocha-test": "^0.13.2", + "mocha": "^3.2.0", "sinon": "^1.17.4", - "supertest": "^1.2.0" + "supertest": "^2.0.1" } }