Merge pull request #4610 from murgatroid99/node_dependencies_version_update

Update some Node dependencies to more recent versions
pull/4625/head^2
Craig Tiller 9 years ago
commit b698eda17f
  1. 4
      package.json
  2. 4
      src/node/interop/async_delay_queue.js
  3. 4
      templates/package.json.template

@ -31,13 +31,13 @@
"protobufjs": "^4.0.0"
},
"devDependencies": {
"async": "^0.9.0",
"async": "^1.5.0",
"google-auth-library": "^0.9.2",
"istanbul": "^0.3.21",
"jsdoc": "^3.3.2",
"jshint": "^2.5.0",
"minimist": "^1.1.0",
"mocha": "~1.21.0",
"mocha": "^2.3.4",
"mocha-jenkins-reporter": "^0.1.9",
"mustache": "^2.0.0",
"poisson-process": "^0.2.1"

@ -36,8 +36,8 @@
var _ = require('lodash');
/**
* This class represents a queue of callbacks that must happen sequentially, each
* with a specific delay after the previous event.
* This class represents a queue of callbacks that must happen sequentially,
* each with a specific delay after the previous event.
*/
function AsyncDelayQueue() {
this.queue = [];

@ -33,13 +33,13 @@
"protobufjs": "^4.0.0"
},
"devDependencies": {
"async": "^0.9.0",
"async": "^1.5.0",
"google-auth-library": "^0.9.2",
"istanbul": "^0.3.21",
"jsdoc": "^3.3.2",
"jshint": "^2.5.0",
"minimist": "^1.1.0",
"mocha": "~1.21.0",
"mocha": "^2.3.4",
"mocha-jenkins-reporter": "^0.1.9",
"mustache": "^2.0.0",
"poisson-process": "^0.2.1"

Loading…
Cancel
Save