Skip to content
Snippets Groups Projects
Commit 042e63ca authored by murgatroid99's avatar murgatroid99
Browse files

Fixed import of google-auth-library

parent ce5dd731
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
var async = require('async'); var async = require('async');
var fs = require('fs'); var fs = require('fs');
var GoogleAuth = require('googleauth'); var GoogleAuth = require('google-auth-library');
var parseArgs = require('minimist'); var parseArgs = require('minimist');
var strftime = require('strftime'); var strftime = require('strftime');
var _ = require('underscore'); var _ = require('underscore');
......
...@@ -78,7 +78,7 @@ function load(filename) { ...@@ -78,7 +78,7 @@ function load(filename) {
/** /**
* Get a function that a client can use to update metadata with authentication * Get a function that a client can use to update metadata with authentication
* information from a Google Auth credential object, which comes from the * information from a Google Auth credential object, which comes from the
* googleauth library. * google-auth-library.
* @param {Object} credential The credential object to use * @param {Object} credential The credential object to use
* @return {function(Object, callback)} Metadata updater function * @return {function(Object, callback)} Metadata updater function
*/ */
......
...@@ -37,7 +37,7 @@ var fs = require('fs'); ...@@ -37,7 +37,7 @@ var fs = require('fs');
var path = require('path'); var path = require('path');
var grpc = require('..'); var grpc = require('..');
var testProto = grpc.load(__dirname + '/test.proto').grpc.testing; var testProto = grpc.load(__dirname + '/test.proto').grpc.testing;
var GoogleAuth = require('googleauth'); var GoogleAuth = require('google-auth-library');
var assert = require('assert'); var assert = require('assert');
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
}, },
"devDependencies": { "devDependencies": {
"async": "^0.9.0", "async": "^0.9.0",
"googleauth": "google/google-auth-library-nodejs", "google-auth-library": "^0.9.2",
"minimist": "^1.1.0", "minimist": "^1.1.0",
"mocha": "~1.21.0", "mocha": "~1.21.0",
"strftime": "^0.8.2" "strftime": "^0.8.2"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment