{"maintainers":[{"email":"node-team-npm+wombot@google.com","name":"anonymous"}],"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"dist-tags":{"latest":"0.10.1"},"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"description":"Making it as easy as possible to authenticate a Google API request","readme":"# google-auto-auth\n> Making it as easy as possible to authenticate a Google API request\n\n```sh\n$ npm install --save google-auto-auth\n```\n```js\nvar googleAuth = require('google-auto-auth');\n\n// Create a client\nvar auth = googleAuth();\n\nauth.authorizeRequest({\n  method: 'get',\n  uri: 'https://www.googleapis.com/something'\n}, function (err, authorizedReqOpts) {\n/*\n  authorizedReqOpts = {\n    method: 'get',\n    uri: 'https://www.googleapis.com/something',\n    headers: {\n      Authorization: 'Bearer {{token}}'\n    }\n  }\n*/\n});\n```\n\nOr, just get an access token.\n```js\nauth.getToken(function (err, token) {\n/*\n  token = 'access token'\n*/\n});\n```\n\n<a name=\"automatic-if\"></a>\nThis works automatically **if**:\n\n  - your app runs on Google Cloud Platform\n  - you are authenticated with the `gcloud` sdk\n  - you have the path to a JSON key file as an environment variable named `GOOGLE_APPLICATION_CREDENTIALS`\n\nIf you do not meet those, you must provide a `keyFilename` or `credentials` object.\n\n```js\nvar googleAuth = require('google-auto-auth');\n\nvar authConfig = {};\n\n// path to a key:\nauthConfig.keyFilename = '/path/to/keyfile.json';\n\n// or a credentials object:\nauthConfig.credentials = {\n  client_email: '...',\n  private_key: '...'\n};\n\n// Create a client\nvar auth = googleAuth(authConfig);\n\nauth.authorizeRequest({/*...*/}, function (err, authorizedReqOpts) {});\nauth.getToken(function (err, token) {});\n```\n\n### API\n\n#### googleAuth = require('google-auto-auth')\n\n#### auth = googleAuth([authConfig])\n\n##### authConfig\n\n- Type: `Object`\n\nSee the above section on Authentication. This object is necessary if automatic authentication is not available in your environment.\n\nAt a glance, the supported properties for this method are:\n\n- `credentials` - Object containing `client_email` and `private_key` properties\n- `keyFilename` - Path to a .json, .pem, or .p12 key file\n- `projectId` - Your project ID\n- `scopes` - Required scopes for the desired API request\n- `token` - An access token. If provided, we'll use this instead of fetching a new one\n\n#### auth.authorizeRequest(reqOpts, callback)\n\nExtend an HTTP request object with an authorized header.\n\n##### callback(err, authorizedReqOpts)\n\n###### callback.err\n\n- Type: `Error`\n\nAn API error or an error if scopes are required for the request you're trying to make (check for err.code = `MISSING_SCOPE`). If you receive the missing scope error, provide the `authConfig.scopes` array with the necessary scope URLs for your request. There are examples of scopes that are required for some of the Google Cloud Platform services in the [gcloud-node Authentication Guide](https://googlecloudplatform.github.io/gcloud-node/#/authentication).\n\n###### callback.authorizedReqOpts\n\n- Type: `Object`\n\nThe reqOpts object provided has been extended with a valid access token attached to the `headers.Authorization` value. E.g.: `headers.Authorization = 'Bearer y.2343...'`.\n\n#### auth.getAuthClient(callback)\n\nGet the auth client instance from [google-auth-library](http://gitnpm.com/googleauth).\n\n##### callback(err, authClient)\n\n###### callback.err\n\n- Type: `Error`\n\nAn error that occurred while trying to get an authorization client.\n\n###### callback.authClient\n\n- Type: [`google-auth-library`](http://gitnpm.com/googleauth)\n\nThe client instance from [google-auth-library](http://gitnpm.com/googleauth). This is the underlying object this library uses.\n\n\n#### auth.getCredentials(callback)\n\nGet the `client_email` and `private_key` properties from an authorized client.\n\n##### callback(err, credentials)\n\n###### callback.err\n\n- Type: `Error`\n\nAn error that occurred while trying to get an authorization client.\n\n###### callback.credentials\n\n- Type: `Object`\n\nAn object containing `client_email` and `private_key`.\n\n\n#### auth.getEnvironment(callback)\n\nDetermine if the environment the app is running in is a Google Compute Engine instance.\n\n##### callback(err, environmentObject)\n\n###### callback.err\n\n- Type: `Null`\n\nWe won't return an error, but it's here for convention-sake.\n\n###### callback.environmentObject\n\n- Type: `Object`\n\n```js\n{\n  IS_APP_ENGINE: Boolean,\n  IS_CLOUD_FUNCTION: Boolean,\n  IS_COMPUTE_ENGINE: Boolean,\n  IS_CONTAINER_ENGINE: Boolean\n}\n```\n\nIf you've already run this function, the object will persist as `auth.environment`.\n\n\n#### auth.getProjectId(callback)\n\nGet the project ID if it was auto-detected or parsed from the provided keyfile.\n\n##### callback(err, projectId)\n\n###### callback.err\n\n- Type: `Error`\n\nAn error that occurred while trying to get an authorization client.\n\n###### callback.projectId\n\n- Type: `string`\n\nThe project ID that was parsed from the provided key file or auto-detected from the environment.\n\n\n#### auth.getToken(callback)\n\nGet an access token. The token will always be current. If necessary, background refreshes are handled automatically.\n\n##### callback(err, token)\n\n###### callback.err\n\n- Type: `Error`\n\nAn API error or an error if scopes are required for the request you're trying to make (check for err.code = `MISSING_SCOPE`). If you receive the missing scope error, provide the `authConfig.scopes` array with the necessary scope URLs for your request.\n\n###### callback.token\n\n- Type: `String`\n\nA current access token to be used during an API request. If you provided `authConfig.token`, this method simply returns the value you passed.\n\n\n#### auth.isAppEngine(callback)\n\nDetermine if the environment the app is running in is a Google App Engine instance.\n\n##### callback(err, isAppEngine)\n\n###### callback.err\n\n- Type: `Null`\n\nWe won't return an error, but it's here for convention-sake.\n\n###### callback.isAppEngine\n\n- Type: `Boolean`\n\nWhether the app is in App Engine or not.\n\n\n#### auth.isCloudFunction(callback)\n\nDetermine if the environment the app is running in is a Google Cloud Function.\n\n##### callback(err, isCloudFunction)\n\n###### callback.err\n\n- Type: `Null`\n\nWe won't return an error, but it's here for convention-sake.\n\n###### callback.isCloudFunction\n\n- Type: `Boolean`\n\nWhether the app is in a Cloud Function or not.\n\n\n#### auth.isComputeEngine(callback)\n\nDetermine if the environment the app is running in is a Google Compute Engine instance.\n\n##### callback(err, isComputeEngine)\n\n###### callback.err\n\n- Type: `Null`\n\nWe won't return an error, but it's here for convention-sake.\n\n###### callback.isComputeEngine\n\n- Type: `Boolean`\n\nWhether the app is in a Compute Engine instance or not.\n\n\n#### auth.isContainerEngine(callback)\n\nDetermine if the environment the app is running in is a Google Container Engine instance.\n\n##### callback(err, isContainerEngine)\n\n###### callback.err\n\n- Type: `Null`\n\nWe won't return an error, but it's here for convention-sake.\n\n###### callback.isContainerEngine\n\n- Type: `Boolean`\n\nWhether the app is in a Container Engine instance or not.\n","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"users":{"jrejaud":true,"appastair":true},"bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"license":"MIT","versions":{"0.1.0":{"name":"google-auto-auth","version":"0.1.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"42bdac3f3ae9c0a8a024b75ff161935db32c2361","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.1.0","_shasum":"22f260a47ae9bb04c955691db651ce40dbdadc0d","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"22f260a47ae9bb04c955691db651ce40dbdadc0d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.1.0.tgz","integrity":"sha512-MqSayLaCXOqoQi/cs6wqegogp2A+pLSTk0nlC/LhsQamEpnLROgmGQ+tkcZiKLcmvEx11osAlLnXkTFqp4cTTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvN2U4SyNnhhB6pteNDk9gvjRuT4DYft6uk27CSmr1BAIhAJoralzx6a6qfrY8Hn2MMEyyQ2IiRnh4P4CGdcY2NIxJ"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{}},"0.1.1":{"name":"google-auto-auth","version":"0.1.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"eb386b93fb1cd44a9e22196364583d327c8590ab","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.1.1","_shasum":"69e061ac54484c11e8a971a5e76d4239dbee6910","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"69e061ac54484c11e8a971a5e76d4239dbee6910","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.1.1.tgz","integrity":"sha512-pivD4Gn0iWLpoKt2yK4PMDGUVe3gVDqBfEfRaCrlVHdBDseoerXJcWYJT+OiglH1/526e5swpJr05o5jx1YCTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFJeEAKm1O0Aan+qCtaWY4QjxfKmoPu7pY769wGnptSlAiAP39jSr/CkDH8QvnrAzrH85zRwkyysAfK1WO7ZisosMg=="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{}},"0.2.0":{"name":"google-auto-auth","version":"0.2.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"5cbdb6c1f93bcd14634c02bb366eefc2fce9333b","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.2.0","_shasum":"57b21c305385108554d0910a34853f2f2c8b0dfb","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"57b21c305385108554d0910a34853f2f2c8b0dfb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.2.0.tgz","integrity":"sha512-iUKjr3Xmnhf7+2EtXE95pEE0GAb3xaeWqBV+XrngbN/bVM20pCjGPYR4hMtSzm28Aue/+zB9jTumF7xNmCZHIQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsqWZUxzUyaBCyZOzuEZD/EQLgH2+zpHJAm5b0A6nftwIgTrNrJwWa21bAy6+X6Im+pZb9cxPmIfPUXlB4ZyYxSvQ="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{}},"0.2.1":{"name":"google-auto-auth","version":"0.2.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"0bea71c76c46158a4a4911b3f16af35f7a16ae9d","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.2.1","_shasum":"a3ca8d73077c7310b5980a9613e2a41f4d46fdae","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"a3ca8d73077c7310b5980a9613e2a41f4d46fdae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.2.1.tgz","integrity":"sha512-jmLHeCExjbu1v9cJUGgGManU+pdi2XPXWLEkWAp8l8gPAutBEQVEUbclRdPypONyg0nfdhxeUAr47lI8kd7d+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcEYVNsg1INyGKwOSrp6ACC7EmEqv+mHG22MNHHm3swAIgN+HUc7uTuICy66RUvr4ht3WGvHbMf5R+stVbZHkW0NE="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{}},"0.2.2":{"name":"google-auto-auth","version":"0.2.2","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"bb5ab13c7757fd959ae234a2a7c5fcaa1c11656c","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.2.2","_shasum":"b024dd4f92038c078f4a100122f4f9471d3b1e89","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0-rc.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"b024dd4f92038c078f4a100122f4f9471d3b1e89","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.2.2.tgz","integrity":"sha512-ncgydnCM7gmd0Phh47PnNu2t8qzzAydiQ13Kjj1S85LIffZhhlMYPZ503Jm9hQTcLkbkAWTHMDrZD0ktsxoQow==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICH6Uj4vf9iK/OgmX57oxv4R0AHJmwqlbo3gU46DJmaIAiEA37/MfF3zDYKzZ7xU6AVjNRYj3xJcF4mnqTPjM59nQGg="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{}},"0.2.3":{"name":"google-auto-auth","version":"0.2.3","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"8284792c8ba92b03dab4b6cc79537f10b8088253","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.2.3","_shasum":"af5ce59fda6e2e071a575027da1596c8bba2185f","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0-rc.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"af5ce59fda6e2e071a575027da1596c8bba2185f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.2.3.tgz","integrity":"sha512-j9ZZDtiMqrviKvySM0yacqeEmv22KIBLzCKYa8eSmwHHk6TWa4jPEdEAOQ3Wj6vdJ9RkIQTaZ939Wad2ic3dPg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDP7oT2mksdlcApwNo01buGdwr6FHoB7M48KAlq0TqOfgIgP3+PR51TN/NRyG4B39pIAudMDFpN9fAXOH8cnh2ZYeY="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{}},"0.2.4":{"name":"google-auto-auth","version":"0.2.4","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.6","object-assign":"^3.0.0"},"gitHead":"5115e7cd8331f79d498ab307c12161985d4a370e","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.2.4","_shasum":"16dafbf150d353a42190979c6803ffc75f6455fa","_from":".","_npmVersion":"2.14.9","_nodeVersion":"0.12.9","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"16dafbf150d353a42190979c6803ffc75f6455fa","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.2.4.tgz","integrity":"sha512-fNorQ3ODsOR3gmsIjdQdEzj0KNk0PQLV0LgoNwDm4hmn0Oz9XfaU6paE66QIpjOL+6pqFfjaF2GORXpnwXGpuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHI0s1NcgnuJeBwQ5KFD6bAdEMZqRXX83YWUijRUii2AAiEA17SYn6k+wNbLY8WUSa8C4IEeUc7gHpx+nfYJ2cZ0l8c="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.2.4.tgz_1455652165365_0.5995134213007987"},"directories":{}},"0.3.0":{"name":"google-auto-auth","version":"0.3.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.9","object-assign":"^3.0.0"},"gitHead":"59d07460178543e39746e5a960f2514d47216af4","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.3.0","_shasum":"c9c5d45de4df1a689c1645d8e533f195ee8d20f9","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"c9c5d45de4df1a689c1645d8e533f195ee8d20f9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.3.0.tgz","integrity":"sha512-Pg0kU/2AywHVW8hfEm1PYFFuTjtpzkgpXUq80ihihLoLonfE40I7scAgoIC8KBkukbK0tOUX+FrVxF10o0jfyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA8bAOGX6EQgxQ4M68dxR8K7XrxwBDtGWSRcrR4MtdDQAiB+OlgRm/Uo6nnvr80X3L+71I9Kl9hIK69CZAn4XVNdmw=="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.3.0.tgz_1476884910801_0.7877587385009974"},"directories":{}},"0.4.0":{"name":"google-auto-auth","version":"0.4.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"google-auth-library":"^0.9.9","object-assign":"^3.0.0"},"gitHead":"f3f3fa7a0469cb65707bc9124c2e63cee39ebb1e","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.4.0","_shasum":"9948e1ab4f9d82fcc67294a279b9cc06ba2b4760","_from":".","_npmVersion":"4.0.0","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"9948e1ab4f9d82fcc67294a279b9cc06ba2b4760","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.4.0.tgz","integrity":"sha512-uw4+AwwEYOiM+TuM71qbMxEKqts7isEyTcWoeCbYBAtX7UQoqziebBNI2BfkesdCtV/TCEj+ejBP7OCQY/6TUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC5rD9oc775OA9hA993llBP9V7RU1QGvNptfI2LJf4rVAiEAtAtVoXzWGE+D6/VTz8kcd6pofTirNW2W/86ilByZg8g="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.4.0.tgz_1479222522374_0.19704062538221478"},"directories":{}},"0.5.0":{"name":"google-auto-auth","version":"0.5.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","google-auth-library":"^0.9.10","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"082e3f5deb449e53c249303b1ad2fad37574e5fc","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.5.0","_shasum":"edab8c927f809374df2eee808e55ff79c020214e","_from":".","_npmVersion":"4.0.0","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"edab8c927f809374df2eee808e55ff79c020214e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.5.0.tgz","integrity":"sha512-Eoa4vO2vO9tfVVw9BcNLPx0n+7hYRL/DqRjJGO7NJIqmrp9IFh00ptXuigsmUn2R1jIM8+Mby+boFwLVr+jqYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCH0WD7/uc70aoDy7pAGW0YE4qi8Nz+pm0nf1cjl3Sn/wIgZOmAqP7gQY2TZXgkSyPXrF/+LP/y6RScU6d//3+anCA="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.5.0.tgz_1479901788074_0.3142497406806797"},"directories":{}},"0.5.1":{"name":"google-auto-auth","version":"0.5.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","google-auth-library":"^0.9.10","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"43d0e1d5386cfcf742a3cc2f15903a3f187267c0","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.5.1","_shasum":"10371617698e20433972b393f1117aece5cc3c56","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"10371617698e20433972b393f1117aece5cc3c56","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.5.1.tgz","integrity":"sha512-inHh+ZyMaRsPU1JU8SW5MLLVv+ONrXvlM16mwcMO+Rw1Igd0z5Xv3zNL6ODgqDVRGGdeqpszJ+UVfkfAH0+mug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDZq9nUekxPfaW0qVe7fLZKPeogSRBUoa2ohhs2VZiutAiBiOMf/+8LVGmsmk4IFWCTJq6+hG2jke5jAXXFpo/EnPA=="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.5.1.tgz_1480352434770_0.8190624637063593"},"directories":{}},"0.5.2":{"name":"google-auto-auth","version":"0.5.2","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","google-auth-library":"^0.9.10","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"701ddd019d8e25e460f6638cc2d1f1010858ad6d","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.5.2","_shasum":"4c9f38574e69fb55a3c516ab0415e9fa33e67602","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"4c9f38574e69fb55a3c516ab0415e9fa33e67602","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.5.2.tgz","integrity":"sha512-hASN/3hyqo2yx0ay+YvLyZApqyom7aTdk61i1sqZx/olIFFpoGJbRkLWIHwunhAa8Kk+cOi8f9QxNkzvSMuulg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCO7mztnz+Rhvk67jhdaT086yfRJA3o2kfAcv/Bh8uOCAIhAJn43jNvGc5YeLYDF3plkXMd4hceA+++T5PB5I7kBGbe"}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.5.2.tgz_1480434585871_0.5546793343964964"},"directories":{}},"0.5.3":{"name":"google-auto-auth","version":"0.5.3","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","google-auth-library":"^0.9.10","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"5b5d904cee03278e24af4d07cd313c3eee3aa1b2","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.5.3","_shasum":"a6d8fdb9ace4658decf93a4fae3795282a52d9e1","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"a6d8fdb9ace4658decf93a4fae3795282a52d9e1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.5.3.tgz","integrity":"sha512-oA4FtbCBJJVJqyjjjHyGAkmyj+ylzWK4qToasRrI2vJ0hswYN2uZL31xQDBRPJ7Pcl7PxVW0zH1ZzFOzpNxJaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAPZeIIwmoy2SAIyKuZqvChaHwIL1LcBSTRm2tDnL7ioAiEA+uGVRS+Krpj0Jw8fN1d+g9snyO+mbzyM2x4yFHDss3k="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.5.3.tgz_1489454491554_0.1327811402734369"},"directories":{}},"0.5.4":{"name":"google-auto-auth","version":"0.5.4","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","google-auth-library":"^0.10.0","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"2a03c3c9894b44715cae9e67784042d18daceda9","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.5.4","_shasum":"1d86c7928d633e75a9c1ab034a527efcce4a40b1","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"1d86c7928d633e75a9c1ab034a527efcce4a40b1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.5.4.tgz","integrity":"sha512-qV5mYHYmY7JZDMaDN0ycukpyxaD7j4GxTA5bCpeni2JcfUNlURYOdgZnY/wvaTDFTYWxaYh0Za/z/lekcMzmAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoPIhlbUzw5nE3yzXmvM+6y7Jk+9iJazdS01NqLjAvegIgUiXF1ab8KGBYnTcqL48p+JuUwyeXHMZ+7/dJ396PAtg="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.5.4.tgz_1489597227480_0.5165566965006292"},"directories":{}},"0.6.0":{"name":"google-auto-auth","version":"0.6.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","gcp-metadata":"^0.1.0","google-auth-library":"^0.10.0","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"b87976f5726f7642ccaff70042b179311ac9b65b","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.6.0","_shasum":"ad76656293d8d06b3c89c358becd29947d4510a8","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.6.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"ad76656293d8d06b3c89c358becd29947d4510a8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.6.0.tgz","integrity":"sha512-QuNlFT9mAhNJWZUg/CBArcqjX97KhW4R2f+pZ56QCcklnnFyGJEhzyyddgmOnu0Ujo0AIPbiPmOpu6XYduSXNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJNEd4hs1+r65+JeCxek+1IUlPsApHTP44r9L/UFyRpAiAFCFtluIBhNlYWr0MbSzONE+4eFCfNklB/9qqPOFI58g=="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.6.0.tgz_1490790011621_0.6656986228190362"},"directories":{}},"0.6.1":{"name":"google-auto-auth","version":"0.6.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^2.2.5","mockery":"^1.4.0"},"dependencies":{"async":"^2.1.2","gcp-metadata":"^0.1.0","google-auth-library":"^0.10.0","object-assign":"^3.0.0","request":"^2.79.0"},"gitHead":"205450c618df9bc8f2ba005d59100f5195b694af","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.6.1","_shasum":"c05d820e9454739ecf28a8892eeab3d1624f2cb3","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"c05d820e9454739ecf28a8892eeab3d1624f2cb3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.6.1.tgz","integrity":"sha512-h+PJDFgbFrfgNWvxwFdnEIPxDesKYWQvj3iD1EanuSeUT4meUpQjKdUUAqcIUcBLHUd32vSkNDSqw3fac6G9iQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCe9BYt2as++dQrwBWgs3ZwqFDeb0T6z0lIR8h0rXQFqAIhAJMNEx0ev2N9fC6f2blx+AdmItj55EnEttrxgQrlCD9H"}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.6.1.tgz_1493054418359_0.03830503020435572"},"directories":{}},"0.7.0":{"name":"google-auto-auth","version":"0.7.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.2.0","google-auth-library":"^0.10.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"98fe2c05bbaef12432afa442c5d82fd732ffe7e2","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.7.0","_shasum":"94384e27c8b334cc354158de19c542d14335c7d2","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"94384e27c8b334cc354158de19c542d14335c7d2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.7.0.tgz","integrity":"sha512-mecpvhZ04+EKrzKlTcvkyb6a3JXWUpfSX5G2yBAxAsuV+pmUBAmKnRGcavXogeY7a/AV2TiIzwM6UU3sPZyEGQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICuH0xHJxzKSjIkydXd977b/y59VGQuAl8vHF7bFKlhfAiEAx1Y9VDo7OgGC2VkET+JxsGf21iAwpKq+mdkw8rd+8Vc="}]},"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/google-auto-auth-0.7.0.tgz_1493311834380_0.1440210398286581"},"directories":{}},"0.7.1":{"name":"google-auto-auth","version":"0.7.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.2.0","google-auth-library":"^0.10.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"ac4daa66d68d0280cc6b7345fee2583ad838de37","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.7.1","_shasum":"c8260444912dd8ceeccd838761d56f462937bd02","_from":".","_npmVersion":"4.2.0","_nodeVersion":"8.1.2","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"c8260444912dd8ceeccd838761d56f462937bd02","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.7.1.tgz","integrity":"sha512-KG9oyd12tpg33GEaxuYKi0o3nosJqYXi3ZfCttNe/EoAg83YxS0hM/SNdPtfyw+z50MuvMCgwfENk2a03q6HEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICWwFASUFUVKM9dWjCvqFgkOKOZCbtkXj+/hkHpVHAcwAiEAwEYtWal2o0EY5w8Om3vHmzwm5kgf5xYtI2Ku2Hiu3No="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"sawchuk@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.7.1.tgz_1498071112511_0.2208373120520264"},"directories":{}},"0.7.2":{"name":"google-auto-auth","version":"0.7.2","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.3.0","google-auth-library":"^0.10.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"0ce5ad9657c82c5264920a473544fca472b4fc74","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.7.2","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"integrity":"sha512-ux2n2AE2g3+vcLXwL4dP/M12SFMRX5dzCzBfhAEkTeAB7dpyGdOIEj7nmUx0BHKaCcUQrRWg9kT63X/Mmtk1+A==","shasum":"bf9352d5c4a0897bf31fd9c491028b765fbea71e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.7.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHJ5OXaImlB4BOzJ1VqIgPBjZxO49yl9hR06NMjGE7NSAiBj9cfD4ewlfbLk/gD8CklWPgKCCiPrHKdSlY2ztUhdMg=="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"sawchuk@gmail.com","name":"anonymous"},{"email":"kythe-npm@google.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.7.2.tgz_1503321635654_0.5904006336349994"},"directories":{}},"0.8.0":{"name":"google-auto-auth","version":"0.8.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.3.0","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"0eabee3f640db230f7556372be3a190ca83d08ce","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.8.0","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-ul3Bvh+3S83xSrD7KjD8xyJIVPx95Yb5yd7y5P+c2Ip2zlQIbDXw0lFyfswUJQEnPmh6iWQw8oQcfgrgbGF3VA==","shasum":"2f73b120fe6f305f7de118876a83f23548757f09","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.8.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF3/6q8MLDpHpHLkyw+HbP1Prbf7z0WFQiAzoZAxb0+QAiAKWZ1wmGjywbH6xSm7KYYkIX/c5W7vWvQzpS9oTwpdeg=="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.8.0.tgz_1511213265309_0.5032959112431854"},"directories":{}},"0.8.1":{"name":"google-auto-auth","version":"0.8.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.3.0","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"2d172a054725f79a51638c6f128f3259f1649daa","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.8.1","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-v5a4mHIkhvbtKNILxnOYgOw+cin/jfLR0pEj1ids2jn9p0OyxYUXjSJbCEciuAorQao9Y55w0zJIc8yW1rIPaA==","shasum":"9658451040db4f8ae7d09a213a36184aac9197ca","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.8.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID59rBugNML3KJo+ICclaceUk2YvWrh3d+OBjw68wwEMAiBdt+mw9dCND6jXoFCxXnBKt6+sT0QKfOiEquCASv9jyg=="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.8.1.tgz_1512057084719_0.3637608867138624"},"directories":{}},"0.8.2":{"name":"google-auto-auth","version":"0.8.2","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.3.0","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"616028b53d08a5f0639daeddea2216a36032afb2","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.8.2","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-W91J1paFbyG45gpDWdTu9tKDxbiTDWYkOAxytNVF4oHVVgTCBV/8+lWdjj/6ldjN3eb+sEd9PKJBjm0kmCxvcw==","shasum":"928ee8954514a2ea179de8dd4e97f04d40d13d0a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.8.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQClw2QxZmoHQ7tk4/cKe95HDxS/7XOwRFAt3GxGyoqDjAIhANz48nF85I3oJOB7r6HqgI7WCF8Ci+FRvjGPis3Rh3wy"}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.8.2.tgz_1513802026363_0.9301879028789699"},"directories":{}},"0.9.0":{"name":"google-auto-auth","version":"0.9.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.3.0","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"252db3e3226aefa7c3d9f7dce0575e968837f618","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.0","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-iz/nqV/G09d6nOVomlfW8QBRI2TiL8Q6qU1E6nD3HJvuXF5L3/Od8dJI+MSLM8lknZ9Mm53JgZ5lP13XC2uiiw==","shasum":"83ca1236c39e1d4f8e497a1157d3acc5dfcf4e9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGzgPensCfUNaTezMLqyLofJzqfVb1LTddjxgYmQuBkKAiBa85b8NtpmsALwOOIXKhLHczIB0IjL1ijsr0ERMEoKfg=="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.9.0.tgz_1513877332984_0.9576481252443045"},"directories":{}},"0.9.1":{"name":"google-auto-auth","version":"0.9.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.4.1","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"5f2fbc06f8cd0c6e11c5eac88aaf4cbdc90a4a48","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.1","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-sEduTu1ga4M3Yg7eF33uuYCDnmaPFUu/gknpXvd5+vBw/Qltor/bAYNXOq0rZPfzXFhhgHvNMWe9Ro9Ays3kbA==","shasum":"c094f5873dddc5f2f35f7a67a1d69ffc61305ea9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfhrnafKYm2gN46kyUhr4s3RhT2WMY7Ravk6m5N2qFWQIgNAfOS7/wo3nPztVG8vmNmqRV/Tte5Bs9hB3FBxLR1qA="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.9.1.tgz_1515634347138_0.8837578778620809"},"directories":{}},"0.9.2":{"name":"google-auto-auth","version":"0.9.2","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.4.1","google-auth-library":"^1.2.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"51137e094fa0ab57d82d83985396a86e905be692","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.2","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-d2FkkMIKsraUOilTahrjpQ2yUdjH1bCm1ZM8fBCeztyz0HIvu/wFeB+DPGN/+9UDvfZu9a73kK741aIExNIXBQ==","shasum":"d2f9539a11bde3926cb695588e5b6c119bfe5a3e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEQfNCMx6vkTbiBKMPhiI+pbWe95bqrv4JCN9BYtTxAhAiBu1qhlY9i4M8+wlPkAuqThsupcXrjNxEFXktebPriyLQ=="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.9.2.tgz_1517414683002_0.9734348147176206"},"directories":{}},"0.9.3":{"name":"google-auto-auth","version":"0.9.3","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^3.3.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.4.1","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=0.4.0"},"gitHead":"c6980696a40c32d80d4d097686bf2eaafb6df3cb","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.3","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-TbOZZs0WJOolrRmdQLK5qmWdOJQFG1oPnxcIBbAwL7XCWcv3XgZ9gHJ6W4byrdEZT8TahNFgMfkHd73mqxM9dw==","shasum":"544c36da639890cf56040b0246859060f140715a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFZkLY4a0txz3ykmeXaq8rgevSdOpwxy3oeKrXKG37CdAiEAzWNvqv0nkp7fDXT/70NsyRMrbzcjLIz6w6+CqKC3pZ0="}]},"maintainers":[{"email":"github-admin@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth-0.9.3.tgz_1517442733684_0.609976943815127"},"directories":{}},"0.9.4":{"name":"google-auto-auth","version":"0.9.4","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha --timeout 0"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.6.1","google-auth-library":"^0.12.0","request":"^2.79.0"},"engines":{"node":">=4.0.0"},"gitHead":"765c8a0e85184538bda25f33bb949aa842eeff23","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.4","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-a/gSNZ2RCaJxriBO/A010IHmdiQeoZS0EE83G7R/yV/OGXM9zd3otRqlcfRUomBLXf9XgsJ0h6bCp7bo+qaPvw==","shasum":"eba19a5f44d5277848591503f821cb9b45da381d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.4.tgz","fileCount":4,"unpackedSize":17941,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDj632m6iemLxP1igZDdX6MX4ywc54tcpbBZiSX52dhsQIgYbxQpfZep3PvXCzyADQ/r0Whrr6xtCGRZEfKwpk/9cE="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth_0.9.4_1519233660061_0.808932613092934"},"_hasShrinkwrap":false},"0.9.5":{"name":"google-auto-auth","version":"0.9.5","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha --timeout 0"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.6.1","google-auth-library":"^1.2.0","request":"^2.79.0"},"engines":{"node":">=4.0.0"},"gitHead":"d925599d7d165d44fd9dcf5e73d1f8103578cbb0","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.5","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-1utCjz63uolG4qAH+i1h7kIXmXaMRZFBsW5AmPNSi9f2ai1zJOayZV2wbi7TJrypA6xnPAi58bnIqg9XLThhow==","shasum":"b0f575e42c57b4edcad74d65203285ce79eb5321","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.5.tgz","fileCount":4,"unpackedSize":18098,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIARDMqwUD3Ahf96ykX8Hptf/ZOCg04zzPBRX3ew45CSqAiEAuciW+LwI41Cdli62fudVP1AQpbbFOhC9lwGnVXho1H8="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth_0.9.5_1519932458898_0.3518625570878029"},"_hasShrinkwrap":false},"0.9.6":{"name":"google-auto-auth","version":"0.9.6","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha --timeout 0"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.6.1","google-auth-library":"^1.2.0","request":"^2.79.0"},"engines":{"node":">=4.0.0"},"gitHead":"9dc148c82ca072bf0808735c790c16394032dfb3","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.6","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-pynB8SrA2k/C9GZe3l9SytgDLJ5rbxMegLVfgojKR8NDmXLNvKLEQNeR6zOp3Wy4gTBkR5Nb7a0/8PZNdtj8TA==","shasum":"07ce4c5e29da607069d3cad3d576d5c447544ad0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.6.tgz","fileCount":4,"unpackedSize":18297,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC7GGIMdJOojiTBQylVECBO8x58tR6lamnbKXB+6TJAWQIgDAaVQ26f8cZ6TNFRgehehdECdXBH2MggfZjw8h/K+Nw="}]},"maintainers":[{"email":"borenet@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dogben@google.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"jcgregorio@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"kjlubick@google.com","name":"anonymous"},{"email":"rmistry@google.com","name":"anonymous"},{"email":"stephan@klaravision.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth_0.9.6_1520361807413_0.181284229003134"},"_hasShrinkwrap":false},"0.9.7":{"name":"google-auto-auth","version":"0.9.7","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha --timeout 0"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.6.1","google-auth-library":"^1.3.1","request":"^2.79.0"},"engines":{"node":">=4.0.0"},"gitHead":"5ef1dd2beaeee60b655a6a24897f5335a3178822","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.9.7","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-Nro7aIFrL2NP0G7PoGrJqXGMZj8AjdBOcbZXRRm/8T3w08NUHIiNN3dxpuUYzDsZizslH+c8e+7HXL8vh3JXTQ==","shasum":"70b357ec9ec8e2368cf89a659309a15a1472596b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.9.7.tgz","fileCount":4,"unpackedSize":19138,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDDw+/24uni5N/054kaUra5e0XiZxkbH48W0hi2TB91RwIhAOReZc0b1wNZ0ax1Sh98nrGfs9pqylUZewfxDLXrG1PJ"}]},"maintainers":[{"email":"borenet@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dogben@google.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"jcgregorio@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"kjlubick@google.com","name":"anonymous"},{"email":"rmistry@google.com","name":"anonymous"},{"email":"stephan@klaravision.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth_0.9.7_1520443995708_0.37359331583120947"},"_hasShrinkwrap":false},"0.10.0":{"name":"google-auto-auth","version":"0.10.0","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha --timeout 0"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.6.1","google-auth-library":"^1.3.1","request":"^2.79.0"},"engines":{"node":">=4.0.0"},"gitHead":"6d3c089a8bbaa62d0a17152131e4dc614267cdc6","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.10.0","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-R6m473OqgZacPvlidJ0aownTlUWyLy654ugjKSXyi1ffIicXlXg3wMfse9T9zxqG6w01q6K1iG+b7dImMkVJ2Q==","shasum":"947bb42e63a6f8c36e0c0781dbf89b0c0beed71d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.10.0.tgz","fileCount":4,"unpackedSize":18963,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHSLzfPJ/+4mtws9/6KiJQGmua5UkZ/FoNWX0ibU+cwWAiEAyVMal51u2JFMVbzWEQM2pEzo0BOZIvhMZqDhQ3L3AqA="}]},"maintainers":[{"email":"borenet@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dogben@google.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"jcgregorio@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"kjlubick@google.com","name":"anonymous"},{"email":"rmistry@google.com","name":"anonymous"},{"email":"stephan@klaravision.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth_0.10.0_1521478952865_0.5822906124891032"},"_hasShrinkwrap":false},"0.10.1":{"name":"google-auto-auth","version":"0.10.1","description":"Making it as easy as possible to authenticate a Google API request","main":"index.js","files":["index.js"],"scripts":{"test":"mocha --timeout 0"},"keywords":["google","authentication","jwt","service","account","googleapis","gcloud","cloud","gce","compute","engine","auth","access","token"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/stephenplusplus/google-auto-auth.git"},"license":"MIT","devDependencies":{"mocha":"^5.0.0","mockery":"^2.0.0"},"dependencies":{"async":"^2.3.0","gcp-metadata":"^0.6.1","google-auth-library":"^1.3.1","request":"^2.79.0"},"engines":{"node":">=4.0.0"},"gitHead":"770fbc11bb755b0cef47400033b23680e03ec376","bugs":{"url":"https://github.com/stephenplusplus/google-auto-auth/issues"},"homepage":"https://github.com/stephenplusplus/google-auto-auth#readme","_id":"google-auto-auth@0.10.1","_npmVersion":"5.8.0","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-iIqSbY7Ypd32mnHGbYctp80vZzXoDlvI9gEfvtl3kmyy5HzOcrZCIGCBdSlIzRsg7nHpQiHE3Zl6Ycur6TSodQ==","shasum":"68834a6f3da59a6cb27fce56f76e3d99ee49d0a2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/google-auto-auth/-/google-auto-auth-0.10.1.tgz","fileCount":4,"unpackedSize":18976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3iPECRA9TVsSAnZWagAAfxQP/0QJulgRKSZ2+JInURti\n160d1fAWQjOhOHP4vGTT8dZkK8PSYLqdyvDgfux3J1Trf1vkwqiEMxWjzjPJ\np2OV4u0mdwVWvRqDOiGc6xKnxPeX83CDjB9A/JcIt0VES0OEoSVrL/tB80AY\n9dLiIFHWX4I2gvUl60uncouWmbf+JvnS1+HUIzphoi++4Yys0OAF4+OHzaQA\n+yZ+xJhS0fP6JRWMqQV2aSdge0JoYpWsDFv1nw6BnTnvILZ7bkmJPQ/8jnQX\nD9ecajKOK4ZXmx4XvFzSLS44mTFKk9UWhsPRXuxGKXFtW+TI9l8MK219AQTd\nEWqwwZdXEo1HZdUomjogdKiNFZV7nj4c2qGSGrO1LR7b9C/EfxOq2emYZiCL\nY1eiFPWGSQqOBzL/bHw6wHUmEBT4RIgrHKm2EEN0Fx2ZnnI67iAwcvHCOa/P\nqTNq1I3PWYj4QebRUH7ZKUWzJC03xI3Z3kIaF/p6cIDmwxfN24IG42IzicXo\nfg+7VrSfBh85L2jkxdPqC9ag7FzW1gglT9wcA2U4v1WL2o3iX57Vg7/888EW\ngIwoy5TocjSLxEDA4sLpBYMKk1hxMUVH6YVc+FLs32G4Ia++GmFzVAp/7mMt\nT3wJWcFQMaOoYfNdy3nxPqEVUhXKkHSPneUbE1mutEIV8CFk6dRnJ8KY7bKC\nJZfg\r\n=QzHm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAXzZVrtU3zi+8XTnx3br2XAtw8zD+cLSP5KACcjgEqEAiBFDh7YV+ajDufJITjGtKKF3YKzQ9ANmCcO51RH2hXHKg=="}]},"maintainers":[{"email":"borenet@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dogben@google.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"jcgregorio@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"kjlubick@google.com","name":"anonymous"},{"email":"rmistry@google.com","name":"anonymous"},{"email":"stephan@klaravision.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/google-auto-auth_0.10.1_1524507587158_0.4848892446078632"},"_hasShrinkwrap":false}},"name":"google-auto-auth","time":{"modified":"2022-06-18T13:24:18.376Z","created":"2015-08-11T20:56:38.282Z","0.1.0":"2015-08-11T20:56:38.282Z","0.1.1":"2015-08-21T23:09:01.830Z","0.2.0":"2015-08-26T02:26:12.311Z","0.2.1":"2015-08-26T02:58:00.287Z","0.2.2":"2015-09-21T15:49:58.926Z","0.2.3":"2015-11-14T01:53:33.873Z","0.2.4":"2016-02-16T19:49:28.984Z","0.3.0":"2016-10-19T13:48:32.724Z","0.4.0":"2016-11-15T15:08:42.949Z","0.5.0":"2016-11-23T11:49:49.967Z","0.5.1":"2016-11-28T17:00:36.971Z","0.5.2":"2016-11-29T15:49:46.483Z","0.5.3":"2017-03-14T01:21:32.263Z","0.5.4":"2017-03-15T17:00:29.331Z","0.6.0":"2017-03-29T12:20:13.379Z","0.6.1":"2017-04-24T17:20:20.161Z","0.7.0":"2017-04-27T16:50:36.827Z","0.7.1":"2017-06-21T18:51:53.505Z","0.7.2":"2017-08-21T13:20:36.697Z","0.8.0":"2017-11-20T21:27:46.353Z","0.8.1":"2017-11-30T15:51:25.634Z","0.8.2":"2017-12-20T20:33:47.358Z","0.9.0":"2017-12-21T17:28:53.055Z","0.9.1":"2018-01-11T01:32:28.716Z","0.9.2":"2018-01-31T16:04:44.752Z","0.9.3":"2018-01-31T23:52:14.665Z","0.9.4":"2018-02-21T17:21:00.196Z","0.9.5":"2018-03-01T19:27:39.010Z","0.9.6":"2018-03-06T18:43:27.485Z","0.9.7":"2018-03-07T17:33:15.792Z","0.10.0":"2018-03-19T17:02:32.915Z","0.10.1":"2018-04-23T18:19:47.264Z"},"readmeFilename":"readme.md","homepage":"https://github.com/stephenplusplus/google-auto-auth#readme"}