Update dev dependencies to latest versions

This commit is contained in:
evilaliv3 2016-01-07 19:10:33 +01:00
parent a730d3f7ad
commit b526d16aeb
2 changed files with 24 additions and 18 deletions

View File

@ -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']
}
}
}
},

View File

@ -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"
}
}
}