From b526d16aebc9ec89d6f394bb7f13c3a40de16117 Mon Sep 17 00:00:00 2001 From: evilaliv3 Date: Thu, 7 Jan 2016 19:10:33 +0100 Subject: [PATCH] Update dev dependencies to latest versions --- Gruntfile.js | 18 ++++++++++++------ package.json | 24 ++++++++++++------------ 2 files changed, 24 insertions(+), 18 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0e1e2f98..45ac6992 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -15,8 +15,10 @@ module.exports = function(grunt) { 'dist/openpgp.js': [ './src/index.js' ] }, options: { - standalone: 'openpgp', - external: [ 'crypto', 'node-localstorage' ] + browserifyOptions: { + standalone: 'openpgp', + external: [ 'crypto', 'node-localstorage' ] + } } }, openpgp_debug: { @@ -24,9 +26,11 @@ module.exports = function(grunt) { 'dist/openpgp_debug.js': [ './src/index.js' ] }, options: { - debug: true, - standalone: 'openpgp', - external: [ 'crypto', 'node-localstorage' ] + browserifyOptions: { + debug: true, + standalone: 'openpgp', + external: [ 'crypto', 'node-localstorage' ] + } } }, worker: { @@ -45,7 +49,9 @@ module.exports = function(grunt) { 'test/lib/unittests-bundle.js': [ './test/unittests.js' ] }, options: { - external: [ 'openpgp', 'crypto', 'node-localstorage'] + browserifyOptions: { + external: [ 'openpgp', 'crypto', 'node-localstorage'] + } } } }, diff --git a/package.json b/package.json index f8d9196a..0c745343 100644 --- a/package.json +++ b/package.json @@ -31,29 +31,29 @@ "test": "grunt test" }, "devDependencies": { - "browserify": "~2.35", - "chai": "~2.3.0", + "browserify": "~12.0", + "chai": "~3.4.1", "coveralls": "^2.11.2", "grunt": "~0.4.5", - "grunt-browserify": "~1.2.11", - "grunt-contrib-clean": "~0.6.0", - "grunt-contrib-connect": "~0.10.1", + "grunt-browserify": "~4.0.1", + "grunt-contrib-clean": "~0.7.0", + "grunt-contrib-connect": "~0.11.2", "grunt-contrib-copy": "~0.8.0", "grunt-contrib-jshint": "*", - "grunt-contrib-uglify": "~0.9.1", + "grunt-contrib-uglify": "~0.11.0", "grunt-jsbeautifier": "~0.2.10", "grunt-jsdoc": "*", - "grunt-mocha-istanbul": "^2.4.0", + "grunt-mocha-istanbul": "^3.0.1", "grunt-mocha-test": "~0.12.7", - "grunt-saucelabs": "8.6.1", + "grunt-saucelabs": "8.6.2", "grunt-text-replace": "~0.4.0", - "istanbul": "^0.3.13", - "mocha": "~2.2.4", + "istanbul": "^0.4.1", + "mocha": "~2.3.4", "node-fetch": "^1.3.3", "whatwg-fetch": "^0.10.1" }, "dependencies": { - "es6-promise": "^1.0.0", + "es6-promise": "^3.0.2", "node-localstorage": "~0.3.4", "zlibjs": "^0.2.0" }, @@ -61,4 +61,4 @@ "type": "git", "url": "https://github.com/openpgpjs/openpgpjs" } -} \ No newline at end of file +}