{"maintainers":[{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"},{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"}],"keywords":["google","gcloud","storage","gcs","upload","resumable"],"dist-tags":{"latest":"6.0.0","legacy-8":"2.3.2","legacy-10":"4.0.2"},"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"description":"Upload a file to Google Cloud Storage with built-in resumable behavior","readme":"# [DEPRECATED] gcs-resumable-upload\n***This repository has been deprecated. Support will end on November 1, 2023.***\n\n> Upload a file to Google Cloud Storage with built-in resumable behavior\n\n```sh\n$ npm install gcs-resumable-upload\n```\n```js\nconst {upload} = require('gcs-resumable-upload');\nconst fs = require('fs');\n\nfs.createReadStream('titanic.mov')\n  .pipe(upload({ bucket: 'legally-owned-movies', file: 'titanic.mov' }))\n  .on('progress', (progress) => {\n    console.log('Progress event:')\n    console.log('\\t bytes: ', progress.bytesWritten);\n  })\n  .on('finish', () => {\n    // Uploaded!\n  });\n```\n\nOr from the command line:\n\n```sh\n$ npm install -g gcs-resumable-upload\n$ cat titanic.mov | gcs-upload legally-owned-movies titanic.mov\n```\n\nIf somewhere during the operation, you lose your connection to the internet or your tough-guy brother slammed your laptop shut when he saw what you were uploading, the next time you try to upload to that file, it will resume automatically from where you left off.\n\n## How it works\n\nThis module stores a file using [ConfigStore](https://www.npmjs.com/package/configstore) that is written to when you first start an upload. It is aliased by the file name you are uploading to and holds the first 16kb chunk of data* as well as the unique resumable upload URI. ([Resumable uploads are complicated](https://cloud.google.com/storage/docs/json_api/v1/how-tos/upload#resumable))\n\nIf your upload was interrupted, next time you run the code, we ask the API how much data it has already, then simply dump all of the data coming through the pipe that it already has.\n\nAfter the upload completes, the entry in the config file is removed. Done!\n\n\\* The first 16kb chunk is stored to validate if you are sending the same data when you resume the upload. If not, a new resumable upload is started with the new data.\n\n## Authentication\n\nOh, right. This module uses [google-auth-library](https://www.npmjs.com/package/google-auth-library) and accepts all of the configuration that module does to strike up a connection as `config.authConfig`. See [`authConfig`](https://github.com/google/google-auth-library-nodejs/#choosing-the-correct-credential-type-automatically).\n\n## API\n\n```js\nconst {gcsResumableUpload} = require('gcs-resumable-upload')\nconst upload = gcsResumableUpload(config)\n```\n\n`upload` is an instance of [`Duplexify`](https://www.npmjs.com/package/duplexify).\n\n---\n<a name=\"methods\"></a>\n### Methods\n\n#### upload.createURI(callback)\n\n##### callback(err, resumableURI)\n\n###### callback.err\n\n- Type: `Error`\n\nInvoked if the authorization failed or the request to start a resumable session failed.\n\n###### callback.resumableURI\n\n- Type: `String`\n\nThe resumable upload session URI.\n\n\n#### upload.deleteConfig()\n\nThis will remove the config data associated with the provided file.\n\n---\n<a name=\"config\"></a>\n### Configuration\n\n#### config\n\n- Type: `object`\n\nConfiguration object.\n\n##### config.authClient\n\n- Type: [`GoogleAuth`](https://www.npmjs.com/package/google-auth-library)\n- *Optional*\n\nIf you want to re-use an auth client from [google-auth-library](https://www.npmjs.com/package/google-auth-library), pass an instance here.\n\n##### config.authConfig\n\n- Type: `object`\n- *Optional*\n\nSee [`authConfig`](https://github.com/google/google-auth-library-nodejs/#choosing-the-correct-credential-type-automatically).\n\n##### config.bucket\n\n- Type: `string`\n- **Required**\n\nThe name of the destination bucket.\n\n##### config.configPath\n\n- Type: `string`\n- *Optional*\n\nWhere the gcs-resumable-upload configuration file should be stored on your system. This maps to the [configstore option by the same name](https://github.com/yeoman/configstore/tree/0df1ec950d952b1f0dfb39ce22af8e505dffc71a#configpath).\n\n##### config.customRequestOptions\n\n- Type: `object`\n- *Optional*\n\nFor each API request we send, you may specify custom request options that we'll add onto the request. The request options follow the gaxios API: https://github.com/googleapis/gaxios#request-options.\n\nFor example, to set your own HTTP headers:\n\n```js\nconst stream = upload({\n  customRequestOptions: {\n    headers: {\n      'X-My-Header': 'My custom value',\n    },\n  },\n})\n```\n\n##### config.file\n\n- Type: `string`\n- **Required**\n\nThe name of the destination file.\n\n##### config.generation\n\n- Type: `number`\n- *Optional*\n\nThis will cause the upload to fail if the current generation of the remote object does not match the one provided here.\n\n##### config.key\n\n- Type: `string|buffer`\n- *Optional*\n\nA [customer-supplied encryption key](https://cloud.google.com/storage/docs/encryption#customer-supplied).\n\n##### config.kmsKeyName\n\n- Type: `string`\n- *Optional*\n\nResource name of the Cloud KMS key, of the form `projects/my-project/locations/global/keyRings/my-kr/cryptoKeys/my-key`, that will be used to encrypt the object. Overrides the object metadata's `kms_key_name` value, if any.\n\n##### config.metadata\n\n- Type: `object`\n- *Optional*\n\nAny metadata you wish to set on the object.\n\n###### *config.metadata.contentLength*\n\nSet the length of the file being uploaded.\n\n###### *config.metadata.contentType*\n\nSet the content type of the incoming data.\n\n##### config.offset\n\n- Type: `number`\n- *Optional*\n\nThe starting byte of the upload stream, for [resuming an interrupted upload](https://cloud.google.com/storage/docs/json_api/v1/how-tos/resumable-upload#resume-upload).\n\n##### config.origin\n\n- Type: `string`\n- *Optional*\n\nSet an Origin header when creating the resumable upload URI.\n\n##### config.predefinedAcl\n\n- Type: `string`\n- *Optional*\n\nApply a predefined set of access controls to the created file.\n\nAcceptable values are:\n\n  - **`authenticatedRead`** - Object owner gets `OWNER` access, and `allAuthenticatedUsers` get `READER` access.\n  - **`bucketOwnerFullControl`** - Object owner gets `OWNER` access, and project team owners get `OWNER` access.\n  - **`bucketOwnerRead`** - Object owner gets `OWNER` access, and project team owners get `READER` access.\n  - **`private`** - Object owner gets `OWNER` access.\n  - **`projectPrivate`** - Object owner gets `OWNER` access, and project team members get access according to their roles.\n  - **`publicRead`** - Object owner gets `OWNER` access, and `allUsers` get `READER` access.\n\n##### config.private\n\n- Type: `boolean`\n- *Optional*\n\nMake the uploaded file private. (Alias for `config.predefinedAcl = 'private'`)\n\n##### config.public\n\n- Type: `boolean`\n- *Optional*\n\nMake the uploaded file public. (Alias for `config.predefinedAcl = 'publicRead'`)\n\n##### config.uri\n\n- Type: `string`\n- *Optional*\n\nIf you already have a resumable URI from a previously-created resumable upload, just pass it in here and we'll use that.\n\n##### config.userProject\n\n- Type: `string`\n- *Optional*\n\nIf the bucket being accessed has `requesterPays` functionality enabled, this can be set to control which project is billed for the access of this file.\n\n##### config.retryOptions\n\n- Type: `object`\n- *Optional*\n\nParameters used to control retrying operations.\n\n```js\ninterface RetryOptions {\n  retryDelayMultiplier?: number;\n  totalTimeout?: number;\n  maxRetryDelay?: number;\n  autoRetry?: boolean;\n  maxRetries?: number;\n  retryableErrorFn?: (err: ApiError) => boolean;\n}\n```\n\n##### config.retryOptions.retryDelayMultiplier\n\n- Type: `number`\n- *Optional*\n\nBase number used for exponential backoff. Default 2.\n\n##### config.retryOptions.totalTimeout\n\n- Type: `number`\n- *Optional*\n\nUpper bound on the total amount of time to attempt retrying, in seconds. Default: 600.\n\n##### config.retryOptions.maxRetryDelay\n\n- Type: `number`\n- *Optional*\n\nThe maximum time to delay between retries, in seconds. Default: 64.\n\n##### config.retryOptions.autoRetry\n\n- Type: `boolean`\n- *Optional*\n\nWhether or not errors should be retried. Default: true.\n\n##### config.retryOptions.maxRetries\n\n- Type: `number`\n- *Optional*\n\nThe maximum number of retries to attempt. Default: 5.\n\n##### config.retryOptions.retryableErrorFn\n\n- Type: `function`\n- *Optional*\n\nCustom function returning a boolean indicating whether or not to retry an error.\n\n\n##### config.chunkSize\n\n- Type: `number`\n- *Optional*\n\nEnables [Multiple chunk upload](https://cloud.google.com/storage/docs/performing-resumable-uploads#chunked-upload) mode and sets each request size to this amount.\n\nThis only makes sense to use for larger files. The chunk size should be a multiple of 256 KiB (256 x 1024 bytes). Larger chunk sizes typically make uploads more efficient. We recommend using at least 8 MiB for the chunk size.\n\nReview [documentation](https://cloud.google.com/storage/docs/performing-resumable-uploads) for guidance and best practices.\n\n---\n<a name=\"events\"></a>\n### Events\n\n#### .on('error', function (err) {})\n\n##### err\n\n- Type: `Error`\n\nInvoked if the authorization failed, the request failed, or the file wasn't successfully uploaded.\n\n#### .on('response', function (response) {})\n\n##### resp\n\n- Type: `Object`\n\nThe [response object from Gaxios](https://github.com/JustinBeckwith/gaxios/blob/88a47e000625d8192689acac5c40c0b1e1d963a2/src/gaxios.ts#L197-L203).\n\n##### metadata\n\n- Type: `Object`\n\nThe file's new metadata.\n\n#### .on('progress', function (progress) {})\n\n#### progress\n\n- Type: `Object`\n\n##### progress.bytesWritten\n\n- Type: `number`\n\n##### progress.contentLength\n\n- Type: `number`\n\nProgress event provides upload stats like Transferred Bytes and content length.\n\n#### .on('finish', function () {})\n\nThe file was uploaded successfully.\n\n---\n<a name=\"static-methods\"></a>\n### Static Methods\n\n```js\nconst {createURI} = require('gcs-resumable-upload')\n````\n\n#### createURI([config](#config), callback)\n\n##### callback(err, resumableURI)\n\n###### callback.err\n\n- Type: `Error`\n\nInvoked if the authorization failed or the request to start a resumable session failed.\n\n###### callback.resumableURI\n\n- Type: `String`\n\nThe resumable upload session URI.\n","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"license":"MIT","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"versions":{"0.1.0":{"name":"gcs-resumable-upload","version":"0.1.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"7601c6dab14383f4b169f9a03abb14e81a2b9c1c","_id":"gcs-resumable-upload@0.1.0","_shasum":"147679293906fde9e21ded2a9148bf6989c89959","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"147679293906fde9e21ded2a9148bf6989c89959","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.1.0.tgz","integrity":"sha512-OEn7MkMofdf0rT/2eKdQ1CgaTP50tl4869h2+2agH8Ua204aFxgLquMv49BqcQvBlh6pMSGf6Asb9y8ige3GiA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHGNd8qdQ8Mbz/8KjeF3Oy73fNAf+w3rZYgcM18NhpifAiEAtptuxyWq/zuXDKnFmnScitLpHplEixOF6FeVv8ymV2o="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.2.0":{"name":"gcs-resumable-upload","version":"0.2.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"13bead5c52f6a2e9be7e94d3289d71ea95018111","_id":"gcs-resumable-upload@0.2.0","_shasum":"d03d80b9314eab9e2778fccdd2c7a7e8f8a0d4d1","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"d03d80b9314eab9e2778fccdd2c7a7e8f8a0d4d1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.2.0.tgz","integrity":"sha512-KCihitoOGUTAiOW1YFurPD74U7ccie6jRVoNKWAaf2pRgHUOKSh8DtNz4mB/VCgJFEITFTmL2O9G90DM26u/+Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE/YWmdUAnbW3vTsBjVIMKnuIPlH32Z85kpDiYYKN0MLAiEA6v0doqfRuqfFVmHkYL5+z2qsG6ih+PahIEXgoSFeg6E="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.2.1":{"name":"gcs-resumable-upload","version":"0.2.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"ef7d897f21f616193f79f6d0e1a78921cdadcae7","_id":"gcs-resumable-upload@0.2.1","_shasum":"df36084693bc6c6b6076eac9caecabd531039904","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.2.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"df36084693bc6c6b6076eac9caecabd531039904","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.2.1.tgz","integrity":"sha512-gX6m7T4OrBYm2Zw+m/xzEz63LNkhysKFTf4RPVxYEla+1794e1nq+3r3WnJqNVxYJZjOTnRqLP5kCQwBqb92iA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBFf+G3bELKGMCUWUEneDJ4LiBWWLrUG0/QAE9jCACQrAiEAgWGvvWEwWuxfBExq8HSjNcZgqnUDyATtZ8+GsdLXFjU="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.2.2":{"name":"gcs-resumable-upload","version":"0.2.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"6a6e822c02e47c65dfab3f34a8004854dd535c25","_id":"gcs-resumable-upload@0.2.2","_shasum":"f5cdbc18aae08ec4808c920c35939c4626788ce5","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"f5cdbc18aae08ec4808c920c35939c4626788ce5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.2.2.tgz","integrity":"sha512-VF5IJIV1ITToHYbgtUctCR1rn3eXOT/HBa8QZuCqRdGZL9n1D+Xh8EAVH8qt2KbntRS/1e5gsxRQ+YmvvAUC8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCxuMcYG7iRjpzpvHbl5sf4zaGBBU4ydYqJCCTSjNZH6wIhALGSS7A+QbDqcbtrDoTVRfCbBn6PuFqFpbasUuBxwx2S"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.3.0":{"name":"gcs-resumable-upload","version":"0.3.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"4f5689c32a4f5ae581233d0449a8c6ba4a25df4c","_id":"gcs-resumable-upload@0.3.0","_shasum":"048bdeb66f37c4e8c738f38e211c69eae5d0a998","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"048bdeb66f37c4e8c738f38e211c69eae5d0a998","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.3.0.tgz","integrity":"sha512-dfB7+F5SfB2ds8qH2mfENPlwJWGSbDmLYcLYvV6FFQZwk5L/6Lfz4dJ2P1zYtJb3Ir6LbhdTqpAOHkZ4RhRfBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmdX20gD29kQetxqLrKFGHnDVcbOOtaLe1qBQRJM+QkQIhAJk+pZ/ocCO4LH/fl9AAMp0lluraL8AaUkPP2GAnGUsz"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.4.0":{"name":"gcs-resumable-upload","version":"0.4.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"5365133d942bf106f270c5f08c4163c3471dabf1","_id":"gcs-resumable-upload@0.4.0","_shasum":"5b702a1909749ecbf81cc1e54916d877ddbe547e","_from":".","_npmVersion":"2.14.9","_nodeVersion":"0.12.9","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"5b702a1909749ecbf81cc1e54916d877ddbe547e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.4.0.tgz","integrity":"sha512-1/nox06fb6vhF19KtWoa8nzdWCRcCXsPe5NGTii/2FidfPhemynQ3D6EMxrHLFNMIk7q0Un3Q4zVvkc5dOCVTQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDdOYDos6X8FiZhHcVlYYEsZXgwSDIfneqx3++b5HWhqgIhAPvVfOjxn72/8PbIVg7jV3td0x7dHnSrjKLwkzvd13fG"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.4.0.tgz_1454358816930_0.9930884607601911"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.4.1":{"name":"gcs-resumable-upload","version":"0.4.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"ce387df37cb871c9ef5ea1be1e17f5120b144498","_id":"gcs-resumable-upload@0.4.1","_shasum":"fea30aa9e0bd0824d480b7b044549b32082b6820","_from":".","_npmVersion":"2.14.9","_nodeVersion":"0.12.9","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"fea30aa9e0bd0824d480b7b044549b32082b6820","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.4.1.tgz","integrity":"sha512-PXCAVFZVWR1BwJZlHoCfppK8kXrgxAZygNe6efZFhRu7NeCVNbY5fEd38lEJIihQKcQm6bmomZjyPEHqiB0Uuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEiQP8uPYUuZUb2Gkh66/gQLWiTwsLRPQeJkzmWwe8nAIhANQlwwxpypAS52qHbZls5R85j2pToBQD/tBMnqKv7oFB"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.4.1.tgz_1454449128259_0.2944090673699975"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.4.2":{"name":"gcs-resumable-upload","version":"0.4.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"ab781da819fc167d35bc00bc50b2242067dd8a06","_id":"gcs-resumable-upload@0.4.2","_shasum":"115a6e584a7989dca5c93140455c9c41d7ce7cb3","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"115a6e584a7989dca5c93140455c9c41d7ce7cb3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.4.2.tgz","integrity":"sha512-O82ViunF2nf81YYk5r5V+EF8eGC65T49WjDOLmzCn/NyD4r/D9GgZxDUo/4Cd4Wz21O0xIbpHK0W2AUjiQakUw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICqarlxJMNU7J0OTP4+ZPGr45vTrsAfXvXh1bokuodolAiA+fxZCJQFh+LGgdXPpsg6oQfJWuXtIxAMyuWQklAa9qw=="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.4.2.tgz_1458563730266_0.6440302161499858"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.4.3":{"name":"gcs-resumable-upload","version":"0.4.3","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"9847b2e6d43a095374bec41036697257df70e601","_id":"gcs-resumable-upload@0.4.3","_shasum":"d7d7c89b6d3faa06ea99bdca43f7bd15fff90be0","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"d7d7c89b6d3faa06ea99bdca43f7bd15fff90be0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.4.3.tgz","integrity":"sha512-e0GpfHo/STupEVj7nFi1avg9wJLGms46MGG/SwoDwyDFE5JBwCHEB0PI+DR5cGRM8jmmsYNuadr7b+ulfpkQHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDCNaEryElpp+/upmDqDNNy+HHfNS7sjKrX2Jln2lx3jAiAUdqJYNqSLqxOU7144z3I3zXALwKFChcJl0HjkaC1+Lw=="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.4.3.tgz_1459777350806_0.029874291270971298"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.5.0":{"name":"gcs-resumable-upload","version":"0.5.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"1abbdea56aa59fbd94d584821b641e77e21c4923","_id":"gcs-resumable-upload@0.5.0","_shasum":"3ba644ced8ca24a7395809d3eae1d3c34b386ef7","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"3ba644ced8ca24a7395809d3eae1d3c34b386ef7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.5.0.tgz","integrity":"sha512-gl6H5QBS9l0GCozUtmW5HrIOkteDC+AM4KcBcgaqkdFt6+4384CqWsXUYxHmJub0StksbpNjW8CNJzl8D/VGHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAIXyh5AF7qufJmi4h69b/QLMO7AKe1t9fh04S31tU1sAiEA1lymcS5fVNmsxNk07DVBBNoKe5NPuQdR22sfbrLP+N0="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.5.0.tgz_1462213601730_0.6297478317283094"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.6.0":{"name":"gcs-resumable-upload","version":"0.6.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"16e258d444ea79c02754dc6b0c68ab9e576aac30","_id":"gcs-resumable-upload@0.6.0","_shasum":"1f1679f8f9519f6c8dd17364a52363d53e89aa98","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"1f1679f8f9519f6c8dd17364a52363d53e89aa98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.6.0.tgz","integrity":"sha512-EuFxtgIWJCp8pBzHNu4VdxlV3clMZn+AbE8jlaKeqC9G6CCCEj6V8GDL0OdOG0IPcjcbQ2JhVFEsqZXBtoqlqg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHEjUwkIk3e1xy/xlHogVbF51zSDZEGr4ulybOpGLUGgIgVvj2xJwhIGzM3uaj9C9nIwtnRXSqiBj8Ssyn4OaUKgc="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.6.0.tgz_1463488110238_0.49592754198238254"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.6.1":{"name":"gcs-resumable-upload","version":"0.6.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"bece8d02b1fd0f6c6af017474a1a88f3545fb101","_id":"gcs-resumable-upload@0.6.1","_shasum":"a78725b348b53c157e23ecd8a1e7ffffd9134317","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"a78725b348b53c157e23ecd8a1e7ffffd9134317","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.6.1.tgz","integrity":"sha512-0gB7XaNFN+1m+Wu1qGraNdO9bWbNW0FCqwd1LLqqQ/Rcc8OXWU492VXaHP+1ESG3IM40MVumq0I+7vObaunMOQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDU8Cyue1ujLK+gbgb6Kk0yk8eWdXnzsNv9e5oBq5tKXwIgMrNlDAhVX6qMjMIml9wSJ6BKQHo7Kc7jomXRRlFRi5c="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.6.1.tgz_1464781358868_0.09123960789293051"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.0":{"name":"gcs-resumable-upload","version":"0.7.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"0098526d60c2693edbcc70eddfa58c29d03053da","_id":"gcs-resumable-upload@0.7.0","_shasum":"84e83bdfc2b54e35d547e6089bb0bde6d5cc4e78","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"84e83bdfc2b54e35d547e6089bb0bde6d5cc4e78","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.0.tgz","integrity":"sha512-Oa83u6YN+fX1Qfj+exRlgWVmyknXpaGRTF/uDPH1Z4gTcn3KQBAhZ/7w86/Oj8eFDtxFUn26WMLX6tuBT47hqw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEeXWfn6/Bj5T1iSkShsBes4wesKAPjvBpuZ4Rb4z2CwIgcUeDxypqhTzwsvt0QBR1KiEUHAOpgyohIABqLMhiyWc="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.7.0.tgz_1465569336442_0.26894632005132735"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.1":{"name":"gcs-resumable-upload","version":"0.7.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"83b0fc5d0a3c23f7bd3a5f552644ec75fb512fe3","_id":"gcs-resumable-upload@0.7.1","_shasum":"813a0fb3a7cf5d8dae0872e3dc94fe446e42a242","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"813a0fb3a7cf5d8dae0872e3dc94fe446e42a242","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.1.tgz","integrity":"sha512-6Qws4k+AZLxzyTYBe1NynpBCBih2TvZhxOBuodChko6hQLX99fSDUY5IxeNFn8QBlqDGyRWpeXkK1vbknk5LdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCxoW84DuomFV0j4RhSaayFU7EuWonaacQLwtvDeLH9ywIhAKBb3yCgc0TSEsMg8pvSYOgcVSZNb8aLlbxnTEFyx+Pw"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.7.1.tgz_1465579301793_0.3432402075268328"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.2":{"name":"gcs-resumable-upload","version":"0.7.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"093c5716fc41333ba9c0bc85a1ec840026c3c01e","_id":"gcs-resumable-upload@0.7.2","_shasum":"af8a96fd35d4badb830dbc5787587d5b74e16452","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"af8a96fd35d4badb830dbc5787587d5b74e16452","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.2.tgz","integrity":"sha512-HqAK85HugVs/9xfvWKq0NIf08zI/uyGk3DVMfzYQoi3iCgQ0r4Xb4QnJ9cux08K7iIaGA03GVsH1pwBzJ08qag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAUsNPoOWpfmEkYiy0Q5JmrPoThnxuSTZGXbQFkFBBLiAiBkDdvP7uBz3zcNtPmppW09qnybRdDyY5hcB1YD41lRkQ=="}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.7.2.tgz_1467043998158_0.956348235020414"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.3":{"name":"gcs-resumable-upload","version":"0.7.3","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"2d6157be41b742585c880861ece74031f6aebe70","_id":"gcs-resumable-upload@0.7.3","_shasum":"157d01940221a351a308e9ffe52f216ad7b52c3b","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"157d01940221a351a308e9ffe52f216ad7b52c3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.3.tgz","integrity":"sha512-EZRyYtqp1qy4ufyo1G7iZrEq9QimMBwtHwVL8FVLz2LONc2ofGBfDQRgsxgc8cXOzNo0Pn6kt4nHz9IlpAFerw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsJUmT6f/+trTtPpooxuzsOFU734RNxCKkFvY41L3wEQIhAOT1WHfzqxELZeAvCNPi//w9mMFJ6+YJMmiCAFeLcDoH"}]},"maintainers":[{"name":"anonymous","email":"sawchuk@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/gcs-resumable-upload-0.7.3.tgz_1467046440814_0.6128532001748681"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.4":{"name":"gcs-resumable-upload","version":"0.7.4","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"0.0.1","configstore":"^1.2.1","google-auto-auth":"^0.2.1","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^2.2.5","mockery":"^1.4.0","standard":"^5.1.0"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"8530cab1dfe1020dff92d32061714e78b4a21572","_id":"gcs-resumable-upload@0.7.4","_shasum":"6633967badf7a4aed2d79337e7badfe889cfd617","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.3.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"6633967badf7a4aed2d79337e7badfe889cfd617","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.4.tgz","integrity":"sha512-JJfmoALy3acL38E/uVxe9veO5m0pqbROOnjEwf/0IzgueowcyltXSWEaGuI5usZY6LA9xIYzfASj1cLwHFAnTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDgGw+flKeK5HcFr3w1oWeQ6F8qboH/elVWp2Cm8OdSaQIgW3M1EI6vp3uo0ZFaXOFsOmUWyUZnUGKOZ7O5Ml0+emg="}]},"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/gcs-resumable-upload-0.7.4.tgz_1474896857452_0.2867657574824989"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.5":{"name":"gcs-resumable-upload","version":"0.7.5","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.6.0","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"d5a6f879996ff93f15e0b35760886e2c752b8ea7","_id":"gcs-resumable-upload@0.7.5","_shasum":"f84e0246fd133468ad3423fb8d17f551ba39b353","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"f84e0246fd133468ad3423fb8d17f551ba39b353","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.5.tgz","integrity":"sha512-Cck1prhfP2sWZrW9ulvHbtddqx1QJibaTy0Mg0pE3C6Vfxc7tH8sT+5r6ntxTtOEEAHzwceWpBUFv7LXC0K02A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCS6syRRit/xddd1nOJj7JN+GVvcqKCQ4mdyNpZTDP+HgIgUUPiUSF7lFDCtkb2EnRaBtl59qXnoUNKnK0NLZghzgo="}]},"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/gcs-resumable-upload-0.7.5.tgz_1491589546886_0.6687858530785888"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.6":{"name":"gcs-resumable-upload","version":"0.7.6","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.6.0","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"b764ae3419a2bc7f78a33c233f8aff49700d5a64","_id":"gcs-resumable-upload@0.7.6","_shasum":"07bcec0656b0541bc6dd0afe0b81a9736ec82a3b","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"07bcec0656b0541bc6dd0afe0b81a9736ec82a3b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.6.tgz","integrity":"sha512-kHDnuzvZB9idPfaypXBafACxKXq/xBKt9E9eFHdZ6SSD1yX6MQTvRwPRZ+Tpeq4Q8tMKLr0qmu3l4c9vTzYcig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBqPUFM8dfcONVNjOI0iueuO8JWWlKRzJYE2cXsyOlrhAiEA/NT2OKQxiOzCT7RgI4OVarbwvk5DclbyRyTvAcA0izw="}]},"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/gcs-resumable-upload-0.7.6.tgz_1491595988661_0.4373444386292249"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.7.7":{"name":"gcs-resumable-upload","version":"0.7.7","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.6.0","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"227726dd7c77f232aea0af3bc6b901c0f1c64146","_id":"gcs-resumable-upload@0.7.7","_shasum":"d9c9725af970bbc86cbf0afef2406dc22ce91864","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"d9c9725af970bbc86cbf0afef2406dc22ce91864","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.7.7.tgz","integrity":"sha512-xl/odsvBL9NpnQIH13P9Nu2qYFqdE7aWO8jyz/YtD4oXG9VZSw459jJDdeqC8vOcPsgnvTnQtgRd8soOF81idA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLMOcvX1xGfWsD5Drj7xK4HLSt+ZIRL1Pd2CJH3M6n8AIhAOG6U42fWsvDbulxDS/gsLHJw/FzGWRnmnmId7nv+hJP"}]},"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":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload-0.7.7.tgz_1495460985563_0.45596260693855584"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.8.0":{"name":"gcs-resumable-upload","version":"0.8.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.6.0","pumpify":"^1.3.3","request":"^2.61.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"95e04406e3a480e694949fd72964a9d8cea80306","_id":"gcs-resumable-upload@0.8.0","_shasum":"d36decc15233446082db8f49e21027744f34f824","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"shasum":"d36decc15233446082db8f49e21027744f34f824","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.8.0.tgz","integrity":"sha512-FeJjxwDvwcdz/sjwEQoTiBk3Rp2dnUrUFpF9j9iPkQSSK7JHxgcDgkuv7rAIHfQWdDQ+ZY0dHmxM7EGw2Uz+EA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID7VfH9uQ5XjixrWHDsvW3TAa8xmMSURyLPnbhz8BpBpAiEArl1q2dJhs72osUpOJAis1Sh1tLbNZa/ZpNLRAAoV/6c="}]},"maintainers":[{"email":"google-cloud@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"sawchuk@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload-0.8.0.tgz_1497640861838_0.5302797360345721"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.8.1":{"name":"gcs-resumable-upload","version":"0.8.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.7.1","pumpify":"^1.3.3","request":"^2.81.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"03b183f820c3b9f8570ebdbbeda0c31b40090c16","_id":"gcs-resumable-upload@0.8.1","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"anonymous","email":"sawchuk@gmail.com"},"dist":{"integrity":"sha512-Ps/yvSzdNL41oiRzSE8UgjcW8hdNQNyMqdsDSmCAn+fwWG8Sg5TR2CqSPchkMiYQQDqN7WWkheTEd0w1hfn/dw==","shasum":"bb9eb7dfbacc8d77f2136b99661e693058fa3be3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.8.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1cfKIFVin8JHRLBgBww7ALjyvLDO0HaHxwvdtbyEUqQIhAJRf9rMpRDF1jnpyPuSIOp9rHZoX/YcvjzZm5eW2zoZc"}]},"maintainers":[{"email":"google-cloud@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"sawchuk@gmail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload-0.8.1.tgz_1501693221202_0.5187249744776636"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.8.2":{"name":"gcs-resumable-upload","version":"0.8.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.7.1","pumpify":"^1.3.3","request":"^2.81.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"50ffd7dc1937f44096fd882cb6f7aa9fe0a79081","_id":"gcs-resumable-upload@0.8.2","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-PBl1OFABYxubxfYPh000I0+JLbQzBRtNqxzgxYboIQk2tdw7BvjJ2dVukk3YH4QM6GiUwqItyNqWBuxjLH8GhA==","shasum":"37df02470430395a789a637e72cabc80677ae964","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.8.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEQ5IGB3cM+6bdedN5cfNlk4sbvei3jcZD4NPLjmtUylAiB6BtXRJplofCp2xEA4UQubkJE6IkQt9UqvnGqYZUBj+g=="}]},"maintainers":[{"email":"google-cloud@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"sawchuk@gmail.com","name":"anonymous"},{"email":"anassri@google.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"luke@sneeringer.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload-0.8.2.tgz_1506003637728_0.911416835617274"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.9.0":{"name":"gcs-resumable-upload","version":"0.9.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"index.js","bin":{"gcs-upload":"./cli.js"},"scripts":{"test":"standard && mocha"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["cli.js","index.js"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"buffer-equal":"^1.0.0","configstore":"^3.0.0","google-auto-auth":"^0.9.0","pumpify":"^1.3.3","request":"^2.81.0","stream-events":"^1.0.1","through2":"^2.0.0"},"devDependencies":{"is-stream":"^1.0.1","mocha":"^3.2.0","mockery":"^2.0.0","standard":"^10.0.1"},"standard":{"global":["after","before","beforeEach","describe","it"]},"gitHead":"5b6b9c014ef152ee10ef01257cb5452444fb5a89","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.9.0","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-+Zrmr0JKO2y/2mg953TW6JLu+NAMHqQsKzqCm7CIT24gMQakolPJCMzDleVpVjXAqB7ZCD276tcUq2ebOfqTug==","shasum":"644202149696ad114358bc1e0cf43a60b5ec0454","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.9.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJDdIvkepiECLiT7h9kYJEjoj5Ff87QfXwldqUHR1k9AiAbEpsI60WXLEuivSYur3d3Anj1pMe4zkD/6Nvw9fs6Mw=="}]},"maintainers":[{"email":"google-cloud@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"nolanmar@google.com","name":"anonymous"},{"email":"anassri@google.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"lukesneeringer@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload-0.9.0.tgz_1515634143173_0.16678276332095265"},"directories":{},"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.10.0":{"name":"gcs-resumable-upload","version":"0.10.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"mocha build/test -r source-map-support/register","check":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run check","prepare":"npm run compile","pretest":"npm run compile","system-tests":"mocha build/test/system-tests -r source-map-support/register --timeout 20000"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["build/src"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"configstore":"^3.1.2","google-auto-auth":"^0.10.0","pumpify":"^1.4.0","request":"^2.85.0","stream-events":"^1.0.3","through2":"^2.0.3"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.0.0","@types/mockery":"^1.4.29","@types/node":"^9.6.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","gts":"^0.5.4","is-stream":"^1.1.0","mocha":"^5.0.5","mockery":"^2.1.0","source-map-support":"^0.5.4","typescript":"~2.8.0"},"gitHead":"f0f7c8f01ce61f04e7dcd316ff681e9e6566b51b","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.10.0","_npmVersion":"5.8.0","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-MHysRpJSIW0JrUSdsyVD0DmbI2yZh2i73jpKYeFysG2czhMlD++rDjc7xJMmMUUCrC82pHhBplQMQ0oi1f3HBg==","shasum":"8e4dff6ceb562cdebbc887d62b8397389460a7d3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.10.0.tgz","fileCount":9,"unpackedSize":34169,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCxvg86D9m3We9KpeQwn7Lb42mqZflE0Wl9bkshZrHYTAIhAKccrrSP5qQN+u716c0MICAwtZSnr2wtVtemvkU571zW"}]},"maintainers":[{"email":"anassri@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"lukesneeringer@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"nolanmar@google.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.10.0_1523480959679_0.9413802023991547"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.10.1":{"name":"gcs-resumable-upload","version":"0.10.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"mocha build/test -r source-map-support/register","check":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run check","prepare":"npm run compile","pretest":"npm run compile","system-tests":"mocha build/test/system-tests -r source-map-support/register --timeout 20000"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["build/src"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"configstore":"^3.1.2","google-auto-auth":"^0.10.0","pumpify":"^1.4.0","request":"^2.85.0","stream-events":"^1.0.3","through2":"^2.0.3"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.0.0","@types/mockery":"^1.4.29","@types/node":"^9.6.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","gts":"^0.5.4","is-stream":"^1.1.0","mocha":"^5.0.5","mockery":"^2.1.0","source-map-support":"^0.5.4","typescript":"~2.8.0"},"gitHead":"5d9e7513bc6ddd7f99a39e84a50ebc0b7cec032f","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.10.1","_npmVersion":"5.8.0","_nodeVersion":"9.1.0","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-dNhDKV9dyY+htlx2/3fLcJ2dmmzSdZtX7yEQxJqbK19nO7OKAlIJlWuJ97DyCxYh+sPEUMizot+5yxraHzHA/A==","shasum":"a2c5dada2e1ba9d581c164c698dfad11cec21f6e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.10.1.tgz","fileCount":9,"unpackedSize":34177,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCK+oPXUZnSP20TuoDD9zRUWFhjRwOTvMOPqwJpfZkwswIgb/mrbQAweomNNNzH3xFE6jQaiAywkBuGs5D1bHV2Bnw="}]},"maintainers":[{"email":"anassri@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"lukesneeringer@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"nolanmar@google.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.10.1_1523543221024_0.26853723428817644"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.10.2":{"name":"gcs-resumable-upload","version":"0.10.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"mocha build/test -r source-map-support/register","check":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run check","prepare":"npm run compile","pretest":"npm run compile","system-tests":"mocha build/test/system-tests -r source-map-support/register --timeout 20000"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["build/src"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"configstore":"^3.1.2","google-auto-auth":"^0.10.0","pumpify":"^1.4.0","request":"^2.85.0","stream-events":"^1.0.3"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.0.0","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^9.6.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","through2":"^2.0.3","gts":"^0.5.4","is-stream":"^1.1.0","mocha":"^5.0.5","mockery":"^2.1.0","nock":"^9.2.5","source-map-support":"^0.5.4","typescript":"~2.8.0"},"gitHead":"36314ceeafcebb45767cdaf2e4afd89658f3734a","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.10.2","_shasum":"7f29b3ee23dcec4170367c0711418249c660545f","_from":".","_npmVersion":"4.0.5","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"shasum":"7f29b3ee23dcec4170367c0711418249c660545f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.10.2.tgz","fileCount":9,"unpackedSize":35165,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa14ByCRA9TVsSAnZWagAAwWcP/Az4PVLx3rjKJeRKqmOl\nT2SZJFMdUpJ+hYPA9zivQpGyJL5q7g4KbtlHu/NEzn+YSMzfx+a1BE3sVO+1\nN05B620mizGn+aWePbvMBfZIHuZ3OZ0qEaLBDTlBa2S+7rDBOVFLZ1r6M3It\nPMHZxpAnLlvONWrLdhe2EJzrnq7evXKRNHIMgsxign+Xh90iRoRUb3EaO2j8\nJ/nlDf8WzvQTiCqMtGR365Hjd/dhHmMg7FEr1/Y5/5Rfzd5VolBLz7HbVRlL\n+9hCebJkAlLOkA0TmYVJAxDAH8fOrQNaWoopHuJPuCo4ZozvaQzlgKkaXRyD\nNlEzFdU0R4KZkyijtrwKUHGrVI1uQIklISnDG+hR8wQykkya55C3ksOiO8iT\nUR6wlWCDlrpCTGT66m/vjMA2yKUvy1wCwB6tG0DiWDXpWGm/G+4BHmX7BV9X\n0yD6G5KJuwTgnYk2Ozc8lTa3xl3c4FkVcYEiG++eNzB9eEgbjPUq6SMIaBpJ\n+G+tAp4WIAHt+bhjjQBQtX93Sk44rdTF8OU3gvSTRALFv5jvi6Im67OrQM4O\nXnKEN9wK7JhR7EHnem1YYdkpqOo3cucRBlIiQ2fEjlQHOqdN9ecIt242N0T2\n9QypukTjSKA8yuw0Df/t0a4WLszHTD73GpvjoXsgmGNzz/owwFw8AzS7iaqm\nzd/Y\r\n=8W/3\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-sXonJFdrLHhIsE+uOtKrmlP/jwnks2GYPrhZaVGnDpggOXMXgSy06xY/G045TdMd22VubAsrk1YWgrjGn5Fexw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGdXVtfcPnk8cfoTosbIvr28upXZsLfY4wuw9nVVTJxAAiA4Al5JPt5zCa79kCY6TnMPzqU2gjwlJaLTJ2hd81bnsw=="}]},"maintainers":[{"email":"anassri@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"lukesneeringer@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"nolanmar@google.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.10.2_1524072560863_0.4552436553116357"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.11.0":{"name":"gcs-resumable-upload","version":"0.11.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"mocha build/test -r source-map-support/register --timeout 4000","check":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run check","prepare":"npm run compile","pretest":"npm run compile","system-tests":"mocha build/test/system-tests -r source-map-support/register --timeout 20000"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["build/src"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"axios":"^0.18.0","configstore":"^3.1.2","google-auth-library":"^1.4.0","pumpify":"^1.4.0","request":"^2.85.0","stream-events":"^1.0.3"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.0.0","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^9.6.1","@types/pumpify":"^1.4.0","@types/request":"^2.47.0","@types/through2":"^2.0.33","gts":"^0.5.4","is-stream":"^1.1.0","mocha":"^5.0.5","mockery":"^2.1.0","nock":"^9.2.5","source-map-support":"^0.5.4","through2":"^2.0.3","typescript":"~2.8.0"},"gitHead":"769139b14f5273ed7903ab6dd5007571d4c84564","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.11.0","_npmVersion":"5.8.0","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-fUM7iZFAujh+VRawqT5Qjw8DXUDMkkCldkkXjFhY3sx9giWqOg25pnDR948A9qUEokuIxhKCirrZOQpDqyWxzw==","shasum":"bea78f0b1c24a227a58bf8f6b7126d31b921b896","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.11.0.tgz","fileCount":9,"unpackedSize":41334,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8FYqCRA9TVsSAnZWagAAfDAP/0E7/5kvDHp0wXFXq8Zh\nzNBK7o2WPed2LX8s6TRBGRZ8kRiWirxd1G4904mZZPSLIB1H9GbS6ELoJD0i\nr65UL1ksnaNJSeDifc0jJc6YYl/5lF8X5qNYKDqtktTnDz58QY/ETRCuh7FJ\nKlDPFWIahKfJQSfi+mYTb5XDFWous5iTVR83EPFE5cuyrwmY5fKawHNQhInC\n7dD5Qo8XNQNUsXa+6p+mLgroNxVyfMd5mx653hOKzxcAjmORIYrgeUeJhEYo\np1uX46xk1w5xzyCMLDozv0cOUZGdP3SQF+KngmvZ6VG4eutaMOSofvXaeEIQ\nKNOAOAI6uxOqgb/osrnDAH5Cz6solMMR10UvFG24mNLJZXTGJoiY1uuHFxOP\nLHNW9Wbu+uqrmqQdm2SOFwc4jRYNYNpPfT85tQo9VazcV2VQeghU5izn0G9j\n+mHRps1ByWEk328Pn4sty4hcKuSzLpAfRohimz0ZKyWJgngr5Ed5IaZZi2bX\n5B41QeQSK4NccSeL1jPWUjYi9CtmV2N6+fYWoDijhihHk425L6Utg438sKQR\nyHVoN0hHeDmAbcu5pl53BITApiDzfOGwCHsyod+PSJb7K4sX+n27endM72X3\nMa26z7HlUBau8iTswZl5WW053OuZVB9T7aUOivR4fzSzq0RQSx6zPz98lpt0\nxTcE\r\n=OslY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDd83X4pUh5pvI36KyKI1jWUfyjPGDi3JeHOCsFWDWxvgIhAPjBevl5TbVwgzeBPyr7JfQmR8PtE7A9nwb+FwKGMxRm"}]},"maintainers":[{"email":"anassri@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"lukesneeringer@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"nolanmar@google.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.11.0_1525700137725_0.04950161589463531"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.11.1":{"name":"gcs-resumable-upload","version":"0.11.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"npm run test-only","test-only":"mocha build/test -r source-map-support/register --timeout 4000","check":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run check","prepare":"npm run compile","pretest":"npm run compile","system-tests":"mocha build/test/system-tests -r source-map-support/register --timeout 20000"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["build/src"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","dependencies":{"axios":"^0.18.0","configstore":"^3.1.2","google-auth-library":"^1.5.0","pumpify":"^1.5.1","request":"^2.87.0","stream-events":"^1.0.4"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","gts":"^0.7.0","is-stream":"^1.1.0","mocha":"^5.2.0","mockery":"^2.1.0","nock":"^9.3.0","source-map-support":"^0.5.6","through2":"^2.0.3","typescript":"~2.9.1"},"gitHead":"f8761d2312e6db3f180378a8e6cb9ef1c1908eb5","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.11.1","_npmVersion":"6.0.1","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-RAJnUcLKGc5pSehhOwMyspg/C8giYR+bfXIxB1g8PZJQneP7dPVU+JAlvcomBoy4IHIMzEnwGi4Syv6xYLI41w==","shasum":"ba5e38beae04303b47cee8a4df830ce4a5d32240","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.11.1.tgz","fileCount":9,"unpackedSize":41731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbM8a/CRA9TVsSAnZWagAAQiIP/2GJCKLihC6Y42+nBUxu\nZsH3ZTI2REP5dHA/K2H3i2cZ3/14LrlaCT9KMwcxTJvY+NW060Vi+dxGzrRR\nPrvegI6koXYG/nHoTxXUXC398X0dE0muRh6qcnkOqgnc7toncYARMgd1C0e0\nBNS16mLMALU2ISxPKT+aJO9pB4KlbUDdg0AGW5fVcNm64hbnA8TCT/Sjo3iq\nfzAoIhgRAW4S2/U/yvGYNFRVK0Zd9VwxcOr4ir9EduRgI0NgXLSfDAWe0Jdh\nvnnnKQlllwlCuhhKQEzAanDomD3zZ6R268h6R5vg+NVvAyqJecrsVSbKuDl3\nEPbufMUhXQOkGskmFrjoEFWnFklp97Z80ojK2sR/4twUexYlvM8YP2MN4W/k\nfcv2d5pOybQtFqR9vKJhABDI7fTZyrl0LG484rG8YSJ1TzYDLQKrwcmUOxrf\nTjxqy8LTvKVzbcFKUtEHUl7Xk/bXNSIr+VPfxWbei2aO7XL5J3yRZKCKornD\nH3JvI2bZBZIFnrPC2mVFGZka0BWiLpO/vAAGr4+zDDcwV7tlN6gDMXOtuUlk\nw1ePiDwiLlVo8+gvtRaV9gKkLUN4o5+6Y6yv9KsyzD4BKBJWkKFPFd2bwvtR\nFo5DLzvI9HvJJHzQwiC3YzuJLAdqPMGJomhz9l/1iGXhFNtF/bzJKfWFG8QD\nFYOR\r\n=qNOp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGY7t3nzGikqbb/ZonH4aSIRu6iCgQrHkgryuqvxLqKIAiEA2p/Ir0CW9uXAcWb60JCvi9QmoPwyqHHafssRTtQepuM="}]},"maintainers":[{"email":"anassri@google.com","name":"anonymous"},{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"npm@crwilcox.com","name":"anonymous"},{"email":"dominicdkramer@google.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"github-admin@google.com","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"kelvinjin@google.com","name":"anonymous"},{"email":"lukesneeringer@google.com","name":"anonymous"},{"email":"mattloring@google.com","name":"anonymous"},{"email":"nolanmar@google.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.11.1_1530119871377_0.8601316361292259"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.12.0":{"name":"gcs-resumable-upload","version":"0.12.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/stephenplusplus/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"npm run test-only","test-only":"mocha build/test -r source-map-support/register --timeout 4000","check":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run check","prepare":"npm run compile","pretest":"npm run compile","system-tests":"mocha build/test/system-tests -r source-map-support/register --timeout 20000"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"files":["build/src"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=6"},"dependencies":{"axios":"^0.18.0","configstore":"^4.0.0","google-auth-library":"^1.5.0","pumpify":"^1.5.1","request":"^2.87.0","stream-events":"^1.0.4"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","gts":"^0.8.0","is-stream":"^1.1.0","mocha":"^5.2.0","mockery":"^2.1.0","nock":"^9.3.0","source-map-support":"^0.5.6","through2":"^2.0.3","typescript":"~3.0.0"},"gitHead":"1b690cff45226b1f7bbd2e74783041d2d4b70227","bugs":{"url":"https://github.com/stephenplusplus/gcs-resumable-upload/issues"},"homepage":"https://github.com/stephenplusplus/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.12.0","_npmVersion":"6.0.1","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},"dist":{"integrity":"sha512-yjWAeIDixZuunH5Y6jUfq74/RPnxwAGqb+lvtYTXHcPxr/mGJEY6dtRusUgP9sADJvmNyjvpV38fTndZY9tfNA==","shasum":"604e746b4d34112459d9e02d8ce70490bdf50a1d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.12.0.tgz","fileCount":13,"unpackedSize":42499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYQ2wCRA9TVsSAnZWagAAO3sP/RjlGMgm7p9zf2nxACEl\n7qzQJxEyurCws8JlY8OKhV4BPuXicsrxA02hLC5kjvQhoDWYQbXD93g81gD6\n7X4cZEJ4Ua/haepLh26t2H3oFNyMrQLoEWbtJgTth+Lp3iwbgrCiOpT85ftU\nEdZFy9+VARWIyy56q52HsgZJE9KMoclaI0l1zgq+7xp2kRxOmzUiKV+uQcVO\nb73Z6zKsO3JPVoSwffblwak78K41oAGfR3/B4pSoR8+poBWUcVpxjlKwPait\nF4Kzyt0KeXYzNxeEP2cNnXelv6WDtJqUHT8eUmF5RMTZicJaG/K12IG3+IZT\nLYkoMijTYguYdFzZHwLFMRAIpf2/VaqhY2SimHCQ1HuQUyO4CTDwzmJjLZuw\nAnVSeqpmo7U50kc70vjyys7Up2l7Sz8ujnsp4rrA2rgkHAVnWTpGz+iW+GP0\nXfxftNv3T2d2RBx9VLm8iYRNqugAf/0nyw1lImGYLts2uTZvEQnF0ZaSGksy\nvaajcvi6krrid0n9owqvnCzLECvhLyeOWnqFy0L4ekbbuE9pavwvZxCTu+wa\n+Do8im1rzYTL/0KllEIK/vTrqZwgLLGMu1ecyQpeUtzGz5C4DrOOrsnp0noS\nIIRMYQyUcMAYAsr0iSormTcr912SLRH8dIsQWrurLZ7cr7PkRHddzZP6LL5R\n0iEg\r\n=PhGu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB24m/f1iWYXlPGi2ezMyU6eMegVkzOvtFQTYJadgO1tAiA7CVQ+p09+RT5pv5NaLYpKzOJpG07HW9kNJi3MbMT6LA=="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.12.0_1533087152311_0.9774781787654112"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.13.0":{"name":"gcs-resumable-upload","version":"0.13.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/GoogleCloudPlatform/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"npm run test-only","test-only":"mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"jsdoc -c .jsdoc.js"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=6"},"dependencies":{"axios":"^0.18.0","configstore":"^4.0.0","google-auth-library":"^2.0.0","pumpify":"^1.5.1","request":"^2.87.0","stream-events":"^1.0.4"},"devDependencies":{"@types/configstore":"^2.1.1","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","codecov":"^3.0.4","gts":"^0.8.0","ink-docstrap":"^1.3.2","intelli-espower-loader":"^1.0.1","is-stream":"^1.1.0","jsdoc":"^3.5.5","mocha":"^5.2.0","mockery":"^2.1.0","nock":"^9.3.0","nyc":"^13.0.0","source-map-support":"^0.5.6","through2":"^2.0.3","typescript":"~3.0.0"},"gitHead":"9b92412392d4cf63813f7ca3fdd11ab46138e06a","bugs":{"url":"https://github.com/GoogleCloudPlatform/gcs-resumable-upload/issues"},"homepage":"https://github.com/GoogleCloudPlatform/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.13.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.4","_npmUser":{"name":"anonymous","email":"node-team-npm@google.com"},"dist":{"integrity":"sha512-hrSYPFJWyx8FDLJEK3XeqbNcCjkRqcuKSaUxL1RpwEAWAxtV+AdUH+NX3n7st/U6/JddQkdb1mmWAy3jgRDflw==","shasum":"706e5c835e4c53cd5527b86013c9f4dda4bfcb14","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.13.0.tgz","fileCount":13,"unpackedSize":41424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkW3tCRA9TVsSAnZWagAAISYP+QDuf9HlpaKf1frjJk+i\nXgKYqaXtMWZ0+9nz7WsxPChQ68j8cenjAnV9w7powEkguwri78fH/KMpxXMH\nT/CdiTzThKoJwKxw7XKfW3lmHwG381vfd66i762Jg+NRrSGw2qxncvNotzER\nxBDcVWCTGbTeOlZsOHrHZTGl0eIivteIaK/7Yc+1NtA0rjj/xzdkFLcnDWnB\nFmL9iWbJ5e5jC/5dgFgYPa1sGBQmFQ/XLRlWSCOOWTqSDQ1yjR3Mz7ghkBI0\nJ6ZUBwdoeA/majMa/cPrXJOm+keGLKY1w7RPUZ9a6kCXpLSW8QynGbwsC3V/\nvXDr1H4kNPCFj71N9v1D0oMhIN3urEWbUO+0o3zMbpAkcZsO+RlTalvhmt9B\n7m94oX+J8Lj2znDjKT4j986dttSiMwOt8tswwD4EwGgSmmPDPeHij5NEbF3/\nUCYLVdCRhzPJSgbwAOdy+zyFzmRtSYOQ/fCIdcO8y3TbV7XGKKp4jjARoD0K\nKqAe+McKZmdPnykNCwDi5byoPsV4BvZtKBPYVXQp22V+ImB6GN+crRomY1Yh\nQTy9HKXTOQZO0z1+InyJpNdJ72rNxyfGe96EVqFFnfCFu/7mRcKLZRhK+/je\nS+wuKnKmdPZGP8g7haKFnYZypkomwgBLP7stBa/ITMsevb5gR8d573eyE8Zm\nnHi8\r\n=4vsX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCbvLeRLwmZFHiVTUrFQHLFxV4NVe6ezquZ4V8Wdxsf8gIgG4tmbP33U1ENrdJp9v4ggFfRRKOlys1md5VjgY7A4AA="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.13.0_1536257517194_0.8198089113424165"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.14.0":{"name":"gcs-resumable-upload","version":"0.14.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"nyc mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=6"},"dependencies":{"configstore":"^4.0.0","google-auth-library":"^3.0.0","pumpify":"^1.5.1","request":"^2.87.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","assert-rejects":"^1.0.0","gaxios":"^1.2.2","codecov":"^3.0.4","gts":"^0.9.0","intelli-espower-loader":"^1.0.1","is-stream":"^1.1.0","mocha":"^5.2.0","mockery":"^2.1.0","nock":"^10.0.0","nyc":"^13.0.0","source-map-support":"^0.5.6","through2":"^3.0.0","typescript":"~3.2.0"},"gitHead":"b425ea10075a50e1568d7b1b8deca93798fcd7d7","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.14.0","_npmVersion":"6.4.1","_nodeVersion":"8.15.0","_npmUser":{"name":"anonymous","email":"node-team-npm@google.com"},"dist":{"integrity":"sha512-zO1sFEnWrjB87tHNHHzrFdj0cEwnfzCmWYi8/ec1puc1RUcyhm5MDUUicufSrD9eo3+1ukrlYSg7pM88znMYDQ==","shasum":"234999bbfda3f3b6e1125b1f1256cea1703cbeb0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.14.0.tgz","fileCount":10,"unpackedSize":47466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSdRFCRA9TVsSAnZWagAA5w8P/RInMux2n/yYHniXUB+C\nsRGbYawIBo1O22tzeasbwb8Rz2LmQANwuLTnrwvEeBZdGRNDI3h4p57rmAz5\nCVi5nsKNzG0o8kWjO+h+OaFsjtXjQ5mwTIOzOKBJtoqBngBFjjpebmHNAEBe\n8VrlD914/PFRQRgnTAmnWSSrLQGVocqNTKS15kgRgrvMEXQjp8aDpwkTVWbp\nUK1HqpvfRYLsEvH4gS1Y1QP9oG5VuxQSujpvCA0Y7gYnrLsQ3D22y1qoevqA\n5nj4pnk4g2bbGm87UrdFaNFjWRz90zsRlKPSOydze01R+aBQLxCq7UVHhQ7d\n02vum78/95RybABSTW3CMnZQJJqNXTL7r16HpC7sDTq1HENj41fYoPOBp9CT\n3DYvjII033O+L5LoN7UEdCKiFNHbpL5Bex/lnBcQKRPa0Pg/TJ8En//qCoKX\nB8OmevmobfCn2ITnp9c3OLe9k67BrkPb8j5iKQ8tzo21TMX7HtZPngqjegca\nvtfSeM85YFXlu8Sj948yVZMLqS/CCpAfijMGCLwvB4RwO8FXaNm1g5UNX2RG\nAYlYSpoFzHWqCSG1LwAr9OpNh8rWKHhu6JynztBoOAIXo7/UtTNABWkmmq0b\n67v+bNdm0OciTmLG6KDbeHaIiUYeXIhl67t15ov9ffYwv3MXEzzxNHyR5eku\n5kSE\r\n=ANOG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCD5lyDgY5cgxpNoxalp6nbPrdQqeqxaPuKLvwH+9BxXAIhAOqJpFG/YxG4AopRpa5/+64B14LGLfmJmnvCfvdnDZ0i"}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.14.0_1548342341091_0.2963627166101228"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"0.14.1":{"name":"gcs-resumable-upload","version":"0.14.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"nyc mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=6"},"dependencies":{"configstore":"^4.0.0","google-auth-library":"^3.0.0","pumpify":"^1.5.1","request":"^2.87.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","assert-rejects":"^1.0.0","gaxios":"^1.2.2","codecov":"^3.0.4","gts":"^0.9.0","intelli-espower-loader":"^1.0.1","is-stream":"^1.1.0","mocha":"^5.2.0","mockery":"^2.1.0","nock":"^10.0.0","nyc":"^13.0.0","source-map-support":"^0.5.6","through2":"^3.0.0","typescript":"~3.2.0"},"gitHead":"e8c4c53e735057bd691a8878f900299f779e342d","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@0.14.1","_npmVersion":"6.4.1","_nodeVersion":"8.15.0","_npmUser":{"name":"anonymous","email":"node-team-npm@google.com"},"dist":{"integrity":"sha512-vkIxLeVyW20DdcyhI8GvOkISV62y7+fKAdelUTn8F5en8AmPduqro5xz3VoHkj/RJ3PQmqNovYYaYPyPHwebzw==","shasum":"d0b0b2acc608d63e4164329b0a1231227383b532","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-0.14.1.tgz","fileCount":10,"unpackedSize":47723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcS2ExCRA9TVsSAnZWagAAMkEP/3lu7Tw7GBTfjRMzm4G+\nk+iLD6Er1MXNQjSuuoXcwnBw2lL6jt42aZpTqI9J1p7uGwYa7ytwgeEo5Dpk\n3+U3PEmD9RJzKJxyB7aNxMLoDklYaN05chRXgT0xbrRkGIz/eV0v7l0052GB\nNaNBkTxvC5zrBQOzwwSkXzl/mZRAdCfkQa9IiSJ5ilCp2e00xFiiLLZ+DWz2\nltJksG8N+awi1w0nknnNnMAzL9ht1hujCddhmVZp5ZqFu0VhPBPFuZ62J2hx\nCe0237QmpP60a01TNC2VwPgq+E1+bHd3JyGni17HcfaRy+UHsiiIhzIFqOrq\nHOSEoCpyReFNFU4Dn9xt1dYICK+mHHajpYim6VRZDRNsr/LXNSvNFMZHxUW2\n3vm70bCXnytJKRQztVCTthnEJfgDVoo4C1kZpFOk0vZ/Ezf0DTJHUBiVC2Dd\nzx3wRYiuXWty0ibK1sItdMDDWGmYwfgEIdVHyHOWbb9GoV8LgKlcFDJBsRuY\n8W2vNwK8dnl10TU1Cv+9hl6yqHY9eTYRVUCiG9BUSQC5CyMnu1TUpHHuxN1y\nA0jC7VIiNqCCHuGanwxdr0hj6e8h5bWhi9LBFuYPoNXJRULcRJkhab4TifLQ\n2Bt5QS96/TiyLsk/zAIwy5PQNpNHPYsIlaboLRHO4EGnyTpii9ECmgJmbHvx\nQMcy\r\n=llCt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDB1RO24T0QPyKHGOEYFhmkMXU7uvJFRvw+wbzOi7JhYgIgMZ4ihuPSMGU+62jH8YwDWwQE0nf2GkXwt6P7AU9eIns="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"google-cloud@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":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_0.14.1_1548443952513_0.80072011007093"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"1.0.0":{"name":"gcs-resumable-upload","version":"1.0.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"nyc mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs -r --skip www.googleapis.com","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=6"},"dependencies":{"abort-controller":"^2.0.2","configstore":"^4.0.0","gaxios":"^1.5.0","google-auth-library":"^3.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","assert-rejects":"^1.0.0","codecov":"^3.0.4","gts":"^0.9.0","intelli-espower-loader":"^1.0.1","is-stream":"^1.1.0","mocha":"^6.0.0","mockery":"^2.1.0","nock":"^10.0.0","nyc":"^13.0.0","source-map-support":"^0.5.6","through2":"^3.0.0","typescript":"~3.3.0","linkinator":"^1.1.2"},"gitHead":"20f9d5b4a0aee6e617cbc51fa63baf2d6f7d5811","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@1.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.15.0","_npmUser":{"name":"anonymous","email":"node-team-npm@google.com"},"dist":{"integrity":"sha512-InuVkmj7srAb64w/vSaCU162jk7p4UHmibvfFjT1opO1tiK8Yy88/BeEYn2bCVMv6LH0Sw29L70ejG6oPeq8Ig==","shasum":"cb50b5d4151aa698897a6a555db52af9df7c90f4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-1.0.0.tgz","fileCount":10,"unpackedSize":50856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd/jtCRA9TVsSAnZWagAAd5IP/jj0UWvMLUE5OUdlYBJh\nE1HnrbGSISbv7j7vn6rPuSS/SkSv8cnGzO5FQJtnh4IwPzJGLQaZcp737K2L\n/fVf/eX7rDcPLq17kZeovBL4rkiSXjU5UV5x9iY/gw6/I4GwZigQ5bpyF7oq\nnWZagtJPvU09CeI43TgYkiZe/CGSVEWHm2haqzcou1LkKTWTCdAkavbVv9Tp\nCUKCNTXHb3+F5cdAzZ6kWc/G7AWn7nGH59zPKo0Qgk9T2Rje0VuwkcJt7cha\n50THCrLTx/GLZafUIepyrk9EvLMe0qrEFNn7ICRD/tSx5b0hVnEbPRZP6Pi3\npaCt6Ot36AolPf2iQ8GIBm/OMvEGVtbIso2SKeNIG/+bgH2m8h0wYFgVpfqx\niBHVFK1H+y65KCkwwVV+UYdXzG5gAA01qSWJavQ+hy1SKwwO1uIZjWx+T05W\nkfjpS604La6m1CdP6eQwMuaFlStoA5NlYYVfV7MyJ1psbcXQEduiGWbS6tWm\nLIe5mojrFwJTN0QZiZzULQPq890IayGPYBU7BhM5CTjXFgO1siyicf9daz00\nMQW8MHM03hBaj/3WRyxa/h/TxhbbIOMPx+AtCuC9OpyhFqlt7S8qjSEoYHh8\nEQjKJjpA2b/+1TCm6Gl31ZhCDzwEukKrr/1j5TzXUPydjkvbiwQ/dksQ2mLE\nKtWH\r\n=wWzo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEeH26HIEg9eylF7FdSzURFmr1BBPdxEXTSZdEROPdb3AiEA5w0uTe7HZ3CJvJGZDzzVvPEy40tZSTHDHLRA2sJ+Bfw="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"npm@fenster.name","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"justin.beckwith@gmail.com","name":"anonymous"},{"email":"ofrobots@google.com","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_1.0.0_1551366378474_0.5592652734253316"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"1.1.0":{"name":"gcs-resumable-upload","version":"1.1.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"nyc mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs -r --skip www.googleapis.com","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=6"},"dependencies":{"abort-controller":"^2.0.2","configstore":"^4.0.0","gaxios":"^1.5.0","google-auth-library":"^3.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^9.1.3","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/request":"^2.47.0","@types/through2":"^2.0.33","assert-rejects":"^1.0.0","codecov":"^3.0.4","gts":"^0.9.0","intelli-espower-loader":"^1.0.1","is-stream":"^1.1.0","mocha":"^6.0.0","mockery":"^2.1.0","nock":"^10.0.0","nyc":"^13.0.0","source-map-support":"^0.5.6","through2":"^3.0.0","typescript":"~3.3.0","linkinator":"^1.1.2"},"gitHead":"3febb04e629f49991851607b007e9a5b807b7b5d","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@1.1.0","_npmVersion":"6.4.1","_nodeVersion":"8.15.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-uBz7uHqp44xjSDzG3kLbOYZDjxxR/UAGbB47A0cC907W6yd2LkcyFDTHg+bjivkHMwiJlKv4guVWcjPCk2zScg==","shasum":"2b06f5876dcf60f18a309343f79ed951aff01399","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-1.1.0.tgz","fileCount":10,"unpackedSize":52172,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcmkbtCRA9TVsSAnZWagAAzTkP/2WgZIDRimeYnPIJHl7r\nYhVBQ2rYwFYHcE1SttHuPUxAXzr/loiIV2cAet361/6Jp0jhp+nl2UWd5zbq\nBrMU/dyWkWI19dWNasa27ajHSYoRCWsDe1rV+jkgCsQxiqKSW79dtYVA/Tz6\nQ9lQ68WNflxLPwaiteL0VIOJTWUuux0LZfmeYrxlGmiXw49J0OCmsx1VFm+h\n8/Y5ZmA9Re4p5YOvfypIxVnBmMcfEK4xpWyYWq5ddG6IFTgiExQK6ScGMcwk\nWE4o2IVpzi3IgthSy+YMQaLlhA/uYwIg48autv0Qy8GHLADVVBZb5Vot7O9q\n+QAztXWiiKOtj4UeA4sOyreCNNo2sKlzC9qexauACe6yRpRJWmqkD4O6BN7t\nQJN84kIoCSKedlBRrvSE/c5rq/qgiy8YvyLvEE9pAHyNJVbB0EpNKsfjLBge\nBhHQwuZ6Z5YDRc2PUfAv5EzFR+j/1+FnuqDnhww5g1+KpSc0+8p3N1L7+Paq\nWdpa2nCzwdoGiY+iCabRuRQhryru8jMAqVqDTX6qFYu2iw5pS27TV2LR4+6a\nN1e+cH1t0zlSmxz6wAqA1K15brJTm9qhtkKTta57udTizusTO9CuEOnbxtyv\nRyCVaw7sNiwjw6dKVmrOglFc1zz315aJ+zq6VQOfBXsexpaHFMTDyiOWR7bC\n7MXV\r\n=9nbk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQgAWSIkAy3dTxru6h4DrExUUOpTqJ6o6QXB4Xn2neLQIgQf8U8bP8/sh5HNOL3t5wK4843YUW0SjXwH5i1FRBDHo="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_1.1.0_1553614572689_0.6131203551724618"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.0.0":{"name":"gcs-resumable-upload","version":"2.0.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"nyc mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs -r --skip www.googleapis.com","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^4.0.0","gaxios":"^2.0.0","google-auth-library":"^4.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","assert-rejects":"^1.0.0","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.1.2","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","nyc":"^14.0.0","source-map-support":"^0.5.6","typescript":"~3.4.0"},"gitHead":"df1f1d84d0399db080a6dabeba00bcbc86dd7bfc","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-NY8M+KEyhE1uSwlqfW5bztMkfNXq11HQvzkmpVK2l9nyAkk0oPK/LGf43DzP3Gh327NTUkW/FITzGHZP116/MQ==","shasum":"63eab6e63f33fca46495b8f623812e1d101ad268","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.0.0.tgz","fileCount":10,"unpackedSize":51696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1IQ5CRA9TVsSAnZWagAA0cUP/jIZsF5jpox+UyIiesXV\n1Edoa6ZWK2oOsI4QRhzSEkNytCKeeiGx+7B4suqOHpZ1W0DErUBeBIw/3g7O\ni1O7BPM0n33ubsJm7Gz8mrAgpbZ1d8NSXZASkMj9kL/IumdifF9aURN58z+9\nzqkyWIiUQsMK3h531x5pXwqUQarkQL5yksT1NrnFLJNS5eNTwe/0kJGoeCMm\n5nc0sgpvft3wwQhswAAfI69CdGeeC6uDZunR+Dpjmg9xP92UlwzaeLpHXuFK\nvGyKmmxzhJPNb9xL3z9BEy+37RUoqGuRgFk52sJy0feDuc5oBJhcX5mmXIbp\nVyqMNbv4LnZLlw4c+4O2FXfUrhJiilNM2x4vHGDAw0mjy9Mz7FUdSfKcFNsc\nGJpfZN3+CJJnNf2n8zm5rLf3lX978/latztMIIfj/CqZgX+OL42t6SwTl2cO\nyCnqwFwoav9uQaskgnC8x+nUT3h6SkR9RONWsHphFJwwAuxAREzU4HQSAbRf\nSWUDnEO+VcMxmT67TPMfYM86gPUdSdPKE6lkx6laGuD+GzD8ZkMh7Q8at31l\nHeO+SSd3Qhr9heOiXWcPrTNyCZPhGjAeurC0FUYd5jO6fVdt97e7yum85REG\nFTHlKpSSsM90yliB0/ciMMToP223gIayrcvRU9lKYB95ibQzCc2BGOGXfi3L\ncYPg\r\n=2zaS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDylcC49F+ekJPS3rRUE18L2TDX2Un/SadSIEQZpHHeKAIgLJSmrdFpdMe1qcbfr4gcAlUok9f9tq09V2HVOV4ZnGM="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.0.0_1557431352408_0.16425807796311753"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.1.0":{"name":"gcs-resumable-upload","version":"2.1.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs -r","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^4.0.0","gaxios":"^2.0.0","google-auth-library":"^4.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.1.2","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"eca3b51234d47a64b2515ddd092c4c1b5feabe06","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.1.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-7tx7u7P5SwPH9SQN+F/2tD2Zfog+9Lot1n87SisrwfBZXY+UXCaLfz5rAL5BTyxy8UcVe1DC7A9+KwYhLmbMvg==","shasum":"9bd4900b13a0a1e4d2b830fa418b9440cde03de0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.1.0.tgz","fileCount":10,"unpackedSize":52448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCkflCRA9TVsSAnZWagAAOOoP/0KZq5Bh7BJzVjnvwXNo\nzx4Y+ovwZN7+8uBzOD+1ttr4YDvfUCvs5ywJhzW/ktJKHmTU3Dfk053i0W0A\nj1IYAUzGbTHMktIgm0izbmdC7kWXA0CvEl+QzyZz0zUrBbp6rFfF0zz8i1Rt\nJmcIfLWAelXlGQa6oWvnJ3GUoGpuiryNc57m1aeiSE/A+QjE4X4pEOOBFWnu\nMLlenlqK+0c7YyqAPoO6p9WmA9nj0jcZzfbBCSInX6LiITybxOF+iGeSNDc8\nkK97Tch/bQa0zE05ODH12K/ZUfeQsQQMs5hj0wm6pvzQMsQ3Q0MzXATusPOP\nAxf7dujk/5m9hryU4aJAa7cDnWNzIyMPnwa3c7/ufqie/k6Cd5sjFOGB5+OX\nfkngJXX5270prxgrva4L7RlwLUpa2KuCZjlEMAfT4KHAdkIh2EC94EHfOM4w\nhD63MUTQmMniX3I42HDhBf+errw0/Kn80b8Ydkj8FYR3CfPAOItgqzaeDoDm\n3yBP4yTcnhqs+YxL+iQpJaR47Bwaku1lnMrtiRGZXSH3cuPBREPydjrVuu7m\nzQHof34FiX5WJQoUoSx7jFJw1GhaI+kNiTDs4nzV9JPwk/+MEcU6J1CxB0G/\n33lxJZgAeaK/hm+FupXAe6oWRLhQHO3tAjFUE0b+l/WR7t68tzYx+Jo6n2Ao\nV5Wx\r\n=1ygd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAPTCLbCxwC+Wc1jJbQEEMYb36XPZL52WCErXoZeUv95AiEAr8K/5GC5zfizpv1hPmKAsVmDUljBPuLvBfT5my2x+jQ="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.1.0_1560954852546_0.9596314301871547"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.1.1":{"name":"gcs-resumable-upload","version":"2.1.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs -r","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^4.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.1.2","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"efed349fdaaaaece951fa94e67adcc820427745a","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.1.1","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-E3fb3yYHbhq0h5lE7oF0AWaYF6oAEszVb05bMAumPCZmd8Ik/ecvDFR0J1nR3EDqDgJ55rw2mIzM2h832XOwFg==","shasum":"42de57df672722a953291c503cfb7b4ba998b64e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.1.1.tgz","fileCount":10,"unpackedSize":52778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdC6BtCRA9TVsSAnZWagAA6WoQAIA08KncO/TmNFdo3n9S\nrMkcDH48lb299E0zxiSwQQX6WRuOhtq3gEzVRIQ7wpkYpvvuUUU6T+0AHweQ\nKHTB7QBmzXfAo0xVNhNlQOMowH/zCQ4pnoCvLcVANj364sjADDB7NlWXtZFr\nQ6BBSe/Am62a6casn1HR+AXizgzacrfxZVZNzU0vOg8wQzcV3xkxKE3yP5oG\n1c2nwCztd70i/zRBnWT9Lnl5H8sLA/4X817tqrdBp8JJ/fNU+kOoaiop3IId\nhhoOcuRiGr1VgUo2fo7/4CpPvY/1Wx1mpMT2T/j1/mbNkQ7SM+OcYi85xAiw\nVo7CBks3Axv3LYkb104WpefYSPzAxKnwVaD64PhW9CCmvdCC7hnTrSW3FUdZ\ncqQ60EJJ4G0czKg4c47AY0gN2sLn9VEJtQftK0IRvcZ2CuLevvVrkPwK5Ct+\nqq/7m898Uo8HWqNWiOaFP8IYnWzTkhxbnbcsYMolWtK54R2urFJmTaeWcd3P\nx1utleXoRa64G3YCXSRrsvb1oMc2CzwwLBD+5h8Xudd2A783OWZIBhSM4XE0\nKTLDL+phSDR+/ZMQSl/DfGJcQUGv16s+aSVpyXEo760uayHB4GfKkuhYKUcn\n6aVBwseiuQ/F3R3uagaoSFrEIJeyt6GNaa+nhNXGTEg2WAWFLo3Oz5esBkKV\noimn\r\n=08uh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEOKUktUfS3Chbmqoq5CgL4p8tEcQ7NUwQiutfCXIWy7AiEApAlWQgjZoQjkFEFgm5P5waSWLXNSF+cPC83dLRjc1ig="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.1.1_1561043052113_0.527719104456382"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.2.0":{"name":"gcs-resumable-upload","version":"2.2.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^4.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"450b9ea212eb7d0d1438a5496484d485ee4a0b5d","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.2.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-yI7TL4XM2P4pm27FsrhSnEWoF3twP16f81jNTkFbajmg4mRnNq4dKSuZPcyWSV7aT5DsUJIGq0m1iKdIYGIskg==","shasum":"68f60579778bb9b9480ea9c0839321ba73c582a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.2.0.tgz","fileCount":10,"unpackedSize":54630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLIuiCRA9TVsSAnZWagAAG8oP/1Eq+guvGxiRL3jSUdK/\nBbUz8I5aO8nAqScxSTWuxoUwlKbDtiNOIDcg0J6xQrD2Q+0VW+XGCx/zm2Mh\nmFdyBbSe8fbuQlQ71pROPul3VxQzvbqXly3D3VWLxHWOxw8PTvHioLGKmUIk\n1fZIGMxCvY28mFcXBlSZ7BIVORC8Lt4AmtGZ/1bwSFvDm99hZBhJoczvqB1N\nv5NQZakp72jpTKrM7Y6bmr00Xn+3F3uli3ojrUmQKuAtts6Bq4Tb5dvBGiYY\nmydRKBvHrOA8RUi93kr0sIFmU9NT49OaW21m4b9ZlfCXhEjwjyjQuUmibdSb\negpWOkUXSoed+Tamw+1QFkGsua9cpY9JjETsOc/t6qLmo+gPwk0g9yGceXGl\noYtZbkJEepQtRIqmHcxIGVqitwxGMbOfCzs3KGAEg5A2lCNG+k0rhjFB3Wn0\nuQoIrXgvrwycMfDZy9803+GUnEP2v7bgSyfh4AtPrcF+Ns29IcD5NgJ+VGcw\n177//oJ+uAxBdKfF/UFsIFScNUpdCWMcGZMAPBzoTh7Up4RDEBuRYBopY8ae\n5jHLQTKewy8Ne1YLPV4Ha/K79/rPrzGLQdQis7h+ocnO9yvIXrske2QpTU4g\nTMfspDNBMOHmbsbUO5FetlomciVtT6/pfDrTObmZ/SvM5rltkDx+l5JYHxoJ\nrSD8\r\n=qnxc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbQ+OQWr736frWVa4Xcjg5B2YaS1Zum+813/IcsdF+CQIgDWVitLnTcYyUw2WdatTK2F3rNy88TiBbdPXZ4G6qblA="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.2.0_1563200418176_0.33231028135532714"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.2.1":{"name":"gcs-resumable-upload","version":"2.2.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^4.0.0","pumpify":"^1.5.1","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"c87f306e5ac4f4edc0a369327d8155430f51ca6a","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.2.1","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-daHamg7keMUqlb01dNf2Op/ZN/jSHTiqxlSXg8WsiXN52zSy4uJvhVyUBheWk4Zj6JKHs1f+WqKKmMBLFNIysA==","shasum":"f8e23d102864251cc0b5545c1d5eda33dc9c47cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.2.1.tgz","fileCount":10,"unpackedSize":55055,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdL3T2CRA9TVsSAnZWagAAmAAQAJ+9uVq9PBLcwoinyoon\n7swyrylfGKvKVBRv9btlUryL86moDYdVn44DHQDxHUmAjb3ahT88I/jOxwzt\n0fg8FzvCJoSZsG9B+9TEnBCh+Oc62KbZGFTl5F/K2I2pDeTby02dDO0Tr/BL\nvqgZIFOPMB5cmVhOaF41srsPq20jB4VykH/VC4UyctQuQATyyamgADI7bXDK\n0OY9go23K8GgoMJKYMpvzpqSTCHfFHO+/SWr3Hc8hiZZwMzP77vr6+YP2zXd\nUkeO4eg2ACo4vgdksZ/pUiGB4lTjDVX42gXgwXxox4SinbU2d25vpvd5eSMX\nKuxln0fcQMYVQ9BaQe1+u7YuJARQQXJVsS+t5baabDSvVCmIR6UNXBO0V5UB\nsbrPgSlUHQjGrjvfOL8SgZaPLV7+zoiKh+VscvdfwA+zY65Xhc4cS4Z0CYiM\ngKGs9RGXe8m5QZHyxaGqKoTpM3qeE0Vhj4sWBNwI7Eemb8Cb9PGE2tQDEjGv\nkR24Es2rDtAf/XYNecI5N06yrlVC0WE5TdzI7wmEGw1Uy4J5dJBrXA+ZIlgS\nfBYevXD3Nio7ccBFg2CXlpImfahtceuVLhCIz0p/ynaDJcSsqwbBp0JwoMyx\nStsbZmMPmRBQuxsWmh0VZ/fAJQCtorHRxXxBgBkBJjlBRtM9c6nJ09etoqJs\nD9oB\r\n=QfG8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDe0wmww6lbrbqLCptCFrXqffkIiKAyUZNIP2T+XR98/AIhALakqVbBN5LPGfkFW2n5HGVuh29Jw3jsZhOhhG5fh+/x"}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.2.1_1563391221512_0.5692485141097681"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.2.2":{"name":"gcs-resumable-upload","version":"2.2.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^4.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"23a66329093eac36c68f500a7a53218107c92591","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.2.2","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-pAkIVrYlRJ59d0QQHy1qU9JYVOjgwLz+SlPtn4S1Q3ckLYXfzZTd/47HnDra0u85j6BawnVQhNJxJTR+VZVsVg==","shasum":"3cedd2616c7f09a3d688077e1c2bf0591ae3f232","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.2.2.tgz","fileCount":10,"unpackedSize":55381,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdL6aFCRA9TVsSAnZWagAAlJQP/3AxT1NKaM6EAUzNd/mX\nSxLWnEfOICJoQdD84cM+OMZ0dZqLajtp+Z4bR3NIE5DF487auOXT3hIcXOu3\n0RQRfPwWpqgaVJ/EBsIcha04bl8a2xGWVfjbV0hP0/Rh7d6GDGyXtJPW0CWK\nMy6iFajbcxvEU1TFMz6AZd6dC6XmbRu2IcP9rewV4y4puP4EZeH51n6ddGYz\nfDbJXE6U8HlpaONBGIp5x+D1bHb3GxqdrN8IRXOrPexKb1G4JzUiXJbMK6wc\n6s0oI6tPEdqU6RJXfz1FhzEk1Hq5n9YP8loXgpELIVSdNisj4e/aTJVTizw+\nBP+doHqPoIPyrchMSk+n1yFEM1Pmh+7QTUJ6Ys00Ghg0FVLUmO/R3zWvzQ3D\nJ70cPG6EVqnzWQQKDNRqlW+kbHZWF+XE0S3d203yG1ebqrtW8Y29N26LA1yx\n1/1wKWmw9TJ3GO4LR+4AG46vLuyaveNVo8rmvalKT1pB3nbYPZfLdgmkvmuZ\nUWx9L9JBqrhK5sC3iujsBYIq2RAQ8BReP7f/Au6XaFgosKtBdjx3ZuMKjtdg\nTSrs3LAUsld7sayT2t8DN9bQtDby3Y33BGyH4WE5qsguNlYxnv06WAR9fJZi\n/4eGKSvLgMZ8D/E6jvvFCRIpaihh1ndY9jaquhCw0EOZujFMoGvipxtOSJTr\nlBNQ\r\n=ik7L\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDxnFIRZ7raIU7nUdqL0B+oqvtG/ZysQ0eSJcMnxc/hgwIgCl0qpx6eGoqTQX3fwgfskv+f6NkKaXr9AYuC32AFg0g="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.2.2_1563403908733_0.5108243401051731"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.2.3":{"name":"gcs-resumable-upload","version":"2.2.3","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^10.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"367b7f9487ed518b43c8dc4d2d23e1fba1814bb2","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.2.3","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-LNmrW+Yel0gbqZ5NZMMXJTH74SS6nGUP9Uca4pPY9bRIYDHJ5/TFAAaHsxCWf8+tid/4eIdNevrv9PDjPTPTeg==","shasum":"54127d1d847bdc2be9df69c76a6ee18c94d1f216","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.2.3.tgz","fileCount":10,"unpackedSize":55719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQHBqCRA9TVsSAnZWagAAqQ8P/1M8eoiT2KjgZ4f16T2P\nV18tv66ixjNE1zsRMgEoyRIKCW3eOzNMjt1MXy5vNQSna678tGz/7HsAM3Ob\nHyI3CayKg4wz3g5QwBXGrbwrZUeL775drVP+K8oIDicmurhQSQSl09ILDJoP\njsb+5c05oR/PS7COhwZOqE7SrxojVgToCq/wnYsHCl/aGXTbBbuTMxd/p4t0\n2qqOC5X0/Zl3HXJUiXWjyu6p7q/raHWQKOQhTc2u/RmaqSgDBH/WxuBMJCx5\nMT5Ad7X72FQ/5r+bvpIxNu+Ox6OA/OitNMwPQNfmdwhMzj/dKd09TgQ1mU9T\nB+DCeLH74ojtTrxtaRLS2dlq6q9PZLhdd/DdWCbk/aGFobaxCKkpD2ZXehWk\n+y0P2Phfc0t3g5cKFRamP4w5Vyna4iA3QlHweACswjdIyve68vlTPObLdygg\nctdItAGTfPnIB5sQgV/DbEAYxfhjxJCUVPbQw/5RBRSAG6dmSA+Osn/skTD1\n7lpV6cJMcDBnziJOwIvunE2/BHzaeVrjFruoVSxvM/CG9uO/sfeBj3DPoW6p\nlV3w7TYLRYxOT17rZSdOgnssAhicnOjnvqxqxG6fZfWZgXdGFneYKdFG0OQ0\n2YSAQenTJqbuHSQUZmVVknERbukBxVZqson5aaabKo+Xxgos5S1AoHwXGLT4\n2juE\r\n=muTR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDbAPSPvIxxUz9DBcfLhi1wzYLBMQqpXTwAcsFWlabLqgIhAO6rTEmOTzZMn8EQ8B+42ouOHTTwkPs/Co07meUpJMv7"}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.2.3_1564504169737_0.32219075823503074"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.2.4":{"name":"gcs-resumable-upload","version":"2.2.4","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^11.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.5.0"},"gitHead":"9c59ee4a3d8467be89188e949e0678fc70d8f092","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.2.4","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-UqoGRLImof+6DRv/7QnMGP3ot+RKhsIS2dVziGFe+ajFDW0cnit7xYyViFA99utDQB0RD+fSqKBkYwNXX3Y42w==","shasum":"c81f58c456cbc6c14c71f12c51779de454d1ccad","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.2.4.tgz","fileCount":10,"unpackedSize":55729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVYKVCRA9TVsSAnZWagAAeuYQAIJdORu5y6uT/wOs4s4I\nIlgSrWQ0p1N/LOXO0dSm6BimbT/ix0ae/z0x7lcBb3/FMO1ahwcZA8UB+Rom\n/U9yNtPtBO4X1HPopD3CQOeQbUM55Hys4qeuPILTba2E2fjLPh98NirvH5Yn\n9uIXmfSagdSbSZ2OdoTRMRfc9QChWXAA+HOj4VgF3NLADtFOKwrz1bqcnDAU\nAsdECrPnce5e9kZBMLB6D/sStLncgtsNH4vGNud+zRrJsc0rnBg7W52/CLBm\nJEDiYJ4qQaDBq+VX1CyYsh8eJBgkyY7Znjl34ctomIl6rYjA5NeQO/cCt4Jn\n+nOaXJsInLf7MQS/2kxaNax79l8IRwbNVhgk6DEQHVRdwCM+hB9VR634BGcA\nuINixVgOKEJpW3cL9H91BjqEIS5ACkxl0M2rkYQQeJz+cLaKs9KarG8hicMg\nizuBoRL8UkNz943xyuCTZqb989+9/BHZoDw26CdSjOByp3YkyBhK1EXgbN0W\nORJpxqHzhAWc5yYuXwWedXDmfyHnVaDb4M/M0DW2hsfeDUAcvdsk0/jW7KCv\nySJgdRpeFEu/NoBTq9BY6tJum35CXXdMapSxlOXpmJmLDvlWJCoiW6vUC61c\nuXP0YTZvnXIMnJD9y+lV/fPuzWPnkBUD3q+09AcX4mwCU1Xx8l7ndrOfHHVn\nmp3r\r\n=8iSE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBzBLH5xq/Ca419rYH6/KfARlrMxMpST5WPFuAhKrpXhAiByzrDMZO683H3HA763hVvXJmJCOTSImqQvmhluE+Yi5Q=="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.2.4_1565885076462_0.7775588543846201"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.2.5":{"name":"gcs-resumable-upload","version":"2.2.5","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^11.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.6.0"},"gitHead":"0719a5f2ab548d552ef08c1c8a0ac9239417f8de","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.2.5","_npmVersion":"6.4.1","_nodeVersion":"8.16.0","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-r98Hnxza8oYT21MzpziAB2thz3AURGz54+osWtczxGNxH7Fodb0HVUEtfqTwBS5vcf9RnKwR7c0EMaI8R39feg==","shasum":"13e832130eb8c12be6d80f4bdc6fc0c410f73ad1","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.2.5.tgz","fileCount":10,"unpackedSize":58125,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddlvsCRA9TVsSAnZWagAApQAP/iVTf3eXEtGtfw6REHsX\nnnbU9b7Vl0AmsqeFdJnFWpEsGQETHldJcTMAjM+rg+y+5ezOZO3ENURWmLcF\nz3gbddR0w03AfJxHGDIVF8ZOlgTjNKeL0VetikEsa8WJOJgPELz02fRERLfM\nvvicKwqjv3BdjyxENEKJ+hc6UqxJqtWkV5BnT9IG6AxHnHW2AyM9ZDlxY8TZ\nklmkNSe8Wtz9/nDyNn7e4Cfba6PbeOSn3D8VZlY+4McWEiQR7o+w0Az/894/\nXh2Itede1Vr1gJEFx0m7Vlish5cCXB0VZ13lEe4mJ+BhpPLc5uscrbCY4XY/\n9R2l78sqcFffM/J5VIujmAviS4cCJVGyH9fP1jiKsoIBRxTYSDFkCsBUUFc+\nBOxuVKKLEd7j+VWFLVIOYYD4UCDVqAE2WrNuKivuIlKeQLE0fLQ7teyhfFdR\nyM6GPeZSkv2LMKYGukHaEecexAzlFNEqbyjmqggpjorYH8kOzwJdVf0GJj0j\nTtZryTq6lD8ksRUhmexmlxn38SOFZ0PRBOV5gJhrHHER7ciilmRI8Cq8fspE\nJi5xs0I01nNSe7XiV+7WBNk1hDEIM0+TUZE3ClM/CM9RPs2GFi8Ztn8j7SlV\nN7iIc3Z2NWmmszY3udgpo3VMoY3BSmcLiWpOdbJZrZvZJtGAZ/h2Y96Tckq0\nqvSg\r\n=nhQ5\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDIRBizFFxu97X4YT02Kpx2f2a8FYx/CFea6yzGkyBZ3AiEApp7E+oFik7Tfv6H9ZQ/yGkF6W0rBNtVBGtlr63Q14xk="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.2.5_1568037868175_0.3660796061272644"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.3.0":{"name":"gcs-resumable-upload","version":"2.3.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^5.0.1","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^11.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.6.0"},"gitHead":"4666dee697d184b0c46f7902ccf35a941478734a","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.3.0","_npmVersion":"6.4.1","_nodeVersion":"8.16.1","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-PclXJiEngrVx0c4K0LfE1XOxhmOkBEy39Rrhspdn6jAbbwe4OQMZfjo7Z1LHBrh57+bNZeIN4M+BooYppCoHSg==","shasum":"7d7eef01df5f45f66975ebc0c268d17d9a2c3b9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.3.0.tgz","fileCount":10,"unpackedSize":59196,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpIENCRA9TVsSAnZWagAAuZ4P/iQj/uSyYlV9dFwU28lG\n0C9UXrfT7pq2EFwJTy/gkeDdjDI7Nqio3CF9SVGIMHTvMuGQ5z0i+pr/3+au\n08R/awH/bEuGTpsdxxNGmhJZZZd/OwWo6wFuyIArvKNuavASHewzV13Z6go0\nc0EjnLZOh4MXof4pUFZN19i53YfBv8tIl5OqpmoyZFbplUAaY2Fe1JJrjxaS\nuNaIFp/6JchkytjDok2xEmqMFcFRbQgsVa2bBAds8DwnBknXeE1/ijJoyb/g\n/n0mNLrRsxODEJ3G9MgOYhkMLCqa5qzckXYTrX1CqH6VizaORcUdiGhGoh93\nSd51O8xF91T9qfH8E7dDJ/xwb4NCPRDa9LVvMESeCAkvmced1AV7I6yAyZ3T\nTEeLxXy0Av4ZnWi/dQ8t7xQ0NgwiAgtHnr+jDHKzV4iY7m+UVqJx0yHgnT5P\nxVaQoYHyJvt8LMnKLIUIJcUf8z2PXLi7Wjjm80qVg6hQWj/kZW179pDt25Vz\nMHxGu3rxTshJH1xKXmqg5NyHsSUmCthRNK5ARfmHZSKKFQ/34z35VH/HlBk3\nGX/XHLhQ7hUKGSDZQMgg7CGJI3bO8OE/4G2U+PTE/7+AwwwR7l/VL2tctHzO\nFXaEayEF0BFkV2Q6tm++K5igFS/UY6zDW5p7H8jRqjx6FVyc5k3kxCEcng16\nhp3r\r\n=gqjT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG9jbzqcY2OLyIWW852zzC5v7J4FoCnlrB1jKTjAFKdzAiAGfjI+thN99olmC+xZhLsFsiUwIW93BJQVaXN70RVCVw=="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.3.0_1571062029323_0.7733210462648543"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.3.1":{"name":"gcs-resumable-upload","version":"2.3.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^6.0.0","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^11.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"~3.7.0"},"gitHead":"de1f9d4491996c0814c301915ed91ce64a776807","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.3.1","_npmVersion":"6.4.1","_nodeVersion":"8.16.1","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-zEO7L+jz99VznQsbsF7vFTnIFbSu+CjdJqt5htnjIrfsp5j+QCVBvbbKdqpaTfCPzpUPYj1Q9O9DhIh/8newfA==","shasum":"5fa7c3035108bba7a2f95435377ad92acdbae656","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.3.1.tgz","fileCount":10,"unpackedSize":59548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzfnVCRA9TVsSAnZWagAAed8P/iNLOt21zgfpvaAOqVda\ns5lc+jR0d9XA5qy2y+W4vhA9ZIhg+kN3Bd7CHa5XlojNfDhCqjFsGmd3LH/2\nYw8W/CSovmBHfvYAO+knlbvLbmemC1W/R0VO2cyhhnaCFEptuSJDLxhoxrR2\nLjxzbtS+6a1pLZeEtbXUEfC6yFLZHlIG+5g/r3PMtic3PktElsW8IQLeYXSg\nROe+OodpDr5lDAYaT8BYsAMTQXhYruJPRc9QB8bdIu0NEs+F1G8MCaoPG1BD\ng7/stvqdo8wHSu2UP7XxSLjAqV6QkrGU1AzBfKptlqRObxt2QMpROR03PwFW\nfZSWbFYUsq84dc7b3WJ5J1FGOQeoJGnZ8GjbzqfCDxWgD2ErGvtsOvqlT1KN\nf9v6VdqH0CP5i5hKJ3FUDQM803X9XAo4W24LtoOHqhUaRDL1Yr22K0filPR8\nBgIMqLDFZl3StEIEV/1OgWxV/nJJRRPUVkRMOTKEuBzGlNUdVDlMDJ04bLMP\nNx0Bs9YrUwjdDpw18i36K4O++4mMUBrR3EI2CnqsgWbPpN6wJpKlnfmd2OXw\nj0JUDh0Eshhq1/yMiETg0onOvBp/itCzoPKu6cCEzgdN0xlseeGvj4Iuob0B\nLXoZr7DMlndw3eZvLtlszvSF4cDVnvP7pTbXMpl6g3WULO9LpSI1KNRQ8cU8\ncXiw\r\n=FMGz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDJESxUdZjRmfB/Bpz0PU5Rd7Qzfhrya3Wak/IZiV/RIAiEAhxiUeB0JadYAK0y4ZKI5ocxDUQ3cnVrcoMui0Onf8V4="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.3.1_1573779924923_0.519687579342357"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.3.2":{"name":"gcs-resumable-upload","version":"2.3.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^5.2.1","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^6.0.0","codecov":"^3.0.4","gts":"^1.0.0","intelli-espower-loader":"^1.0.1","is-stream":"^2.0.0","linkinator":"^1.5.0","mocha":"^6.1.4","mockery":"^2.1.0","nock":"^11.0.0","sinon":"^7.3.2","source-map-support":"^0.5.6","typescript":"3.6.4"},"gitHead":"ca6dc3e1acb623dfa7aa64d735fd8de0c1633bd4","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.3.2","_npmVersion":"6.4.1","_nodeVersion":"8.16.2","_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"dist":{"integrity":"sha512-OPS0iAmPCV+r7PziOIhyxmQOzsazFCy76yYDOS/Z80O/7cuny1KMfqDQa2T0jLaL8EreTU7EMZG5pUuqBKgzHA==","shasum":"f04a7459483f871f0de71db7454296938688a296","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.3.2.tgz","fileCount":10,"unpackedSize":60174,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6XSlCRA9TVsSAnZWagAAmWIP/iuhjdo3r+w3rxdX3mFu\n0dGyKKMAOkR3gu2QjEi8aVs0Nq/EH9kb4KohjFrhEGBlEGk7oTZkf81DvKkU\n8Gw1gybd9E9FOj04MP9bUgeXSQjr4p1NuL2wihRxmLpmoZ0EeFXKQv++dqSo\nrXQu9lTDr5Xt0/P+JJtpnoVxwQHCpyoDtmOtrcPz6rJHIj7vkcYNeecOcnE/\nW0w4BcwJ7EYa3befxdvap4erzC9AimRTOWaxvhdGaQxJExB0HFl+EHR9nz5F\nbnB1vKWTqffxnXenXXm/cKvlgZPivQI79g2v0DIm/+m05DN9hmPFQ9lmybEk\nJ7xv9WgiO+xwYuBDuYlSEGv3sJWfiu5AYw38oFvQoWCTdmuysZW2OQljjQFz\nCcoR2OVHsTPFVrtWkHadq2c+KP9Q7owsfvrNNcGM8LjAzeplabWrVUHWzs4u\nIcBLq5lZyqAQQmo7IobB+CKeOB3AkMrmzwRDDfhn0QNjLKC9mJfRNhgfUUwD\nUBaAIjIGgbqLMxP+DuGs0Fv+/QwQ289AuwNaqheFgmcP1XA6AB1yZtr9RzRz\nDFoWTtfVptDSsEeqp/9kdN05NUnlXgjrxnde8KlQstmzqEYTMKl31ZwbfmSb\nWX9GFDsUI6bB1uyiydr9DCAQ8+5rhSZ64LHSiN9sZ52vlg6368Gf2pAKNWmk\n5fMH\r\n=ZMNb\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDj2JCfNFLJyIPNNp18516JEroBn6WUZmkIP+MmaRrE+AiAAoc3itk0cc9zRAyntnRnPIor/RoxuC+yWuv0mwY87IQ=="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@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/gcs-resumable-upload_2.3.2_1575580836809_0.008473004848471799"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"2.3.3":{"name":"gcs-resumable-upload","version":"2.3.3","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","posttest":"npm run lint","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 20000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=8.10.0"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^2.0.0","google-auth-library":"^5.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^7.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^7.0.10","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^1.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^7.0.0","mockery":"^2.1.0","nock":"^12.0.0","sinon":"^9.0.0","typescript":"3.6.4"},"bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@2.3.3","_nodeVersion":"10.18.1","_npmVersion":"6.13.4","dist":{"integrity":"sha512-sf896I5CC/1AxeaGfSFg3vKMjUq/r+A3bscmVzZm10CElyRanN0XwPu/MxeIO4LSP+9uF6yKzXvNsaTsMXUG6Q==","shasum":"02c616ed17eff6676e789910aeab3907d412c5f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-2.3.3.tgz","fileCount":10,"unpackedSize":60839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeaXHgCRA9TVsSAnZWagAAerYP/06SqdM7Y9fKA3GTQy4h\nDabLHnP021aYz8oebLKcn4JZ6dBrH3hZR8thGk/vWmq0E6iGOTbRF0R+S1wk\nPkiRDT8ylWxrIK8UinzkZ6wKGOqzrWP0uhUiehw683W8InvCUA2tBuMyQ1t4\nKiMEqg6TWaqe3O4cQR1Aehd0gHnlhPEGZlcTN1/CJfwwQqdNaJT3cg//Zw3x\nJ1YNc4TiG+T3B2tl1QgKeKej5O9yqMNmVZ5Zfcccxq5MkkpcMsRkCHfJmW54\npdiPbVIBR08kGKzafeSTbRZR4eFJa2xHU+jRrAwHVAqU2jZHMiJ7lHodhEit\nsl1RoBfx+lJJlEj2nXaRWdjfokjIHNUyiTpJUge7oBtmhweZBNREsGxb0uMg\nHq3LuUuzqsFBOIVCFDA8E3mRARB8B5QXKjLv7TPDW7lrq7IKqYh7c1QCuSM3\nWY2ETnyUY7XRYriSoWkVv5WAQi34lEv+vI8qh/u6lsVN00zGQVrRTV3Xp08m\noQ1g7F7ui1vZz+wC4nyxPM2UIuowVPJf3b20Qc2q1IdDl96cCeOf5jJvjuFK\np1r6dh+NcICXEk12ztEKLZ0KG1kSwP7TRsoLsd+3B9NW43fQoQBytEj/ef6p\nkBVX301yPJKNuPBFzmT2/BCRM8eDpALdBo9y8Fc9I0YSsuHszk7xPw7Twvad\n5xnL\r\n=tax0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMV2djjN91jM8wiEpfleGrFCjpFScLk2gHzICd6Oy1tAIgdibyVxTeQQmmmFxZ/Llcx3RZnoXymPwHqRIOE+HPBa0="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_2.3.3_1583968736334_0.6105970008038597"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.0.0":{"name":"gcs-resumable-upload","version":"3.0.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","gaxios":"^3.0.0","google-auth-library":"^6.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/is-stream":"^1.1.0","@types/mocha":"^7.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^9.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^7.0.0","mockery":"^2.1.0","nock":"^12.0.0","sinon":"^9.0.0","typescript":"^3.8.3"},"bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.0.0","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-mRh0US1FhyCbQ+WlAnMWbKMfHiQwE83za0e0tToxz1Y+i+uBS2v9pmTemGa4lo7DH49nt20mXUtsQomf+hjuQQ==","shasum":"e325f5d1b7c6bd7bce970f6dc8f610694beab657","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.0.0.tgz","fileCount":10,"unpackedSize":63341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeurdSCRA9TVsSAnZWagAAvo8P/jXDYYtgz8uvEAFSJwYA\n0Z/6N7hp2vgRUNhTZ84/VWE5AxEzgRhc/+uyJT4UM3BdaG6fzAYsoVxHuVRf\n+Amy+uAGsHyyVsXeUw+b6cjDDw+ntBok2iAegFfluvrXSGHKqqL4zsj6DYjE\njagVp55QYIFF7krhGXdI7FbMohcsw187Yat7PEuxij+8wIp3gGYgotZKZVXZ\nmv+5NNgJ0cTRsb0TwWjMDDeci1Vbb8+EWL3ly/8aSp1YzNI6+8tdxxhjJO27\nC3LTpcmcu1MlMz4aMBHjI7s4OTgnWtZqrBIAipaFG1im+okX/IKJw9lhw/or\nyMoqLXQl/WBAiZ+04nRWCPishn2QNcR+SgxYx57ZI7eZdnNGvEcl7hRgyp7d\nEpBn4Pz5pAO3yrv/snoJamFUXgK07MRRSXfqCkE21Czj/YBigjkNbSv8AXNQ\nEZRbOKtKKupYUnlAxOoKyLdW0dqewcfEL96VkpstfmAsnqOE/rDq7Rpp6+Mb\nBlhdEHcc/EKXvznfIbedjCbOIt9JbnIsiN9Uk/k0Kw0T9n2llFCiX80SshNp\nePNAtf5duL6NQfIO/iqMOEJZrZjbpLk2ab5gp9eQW4W/3vdpE5/r9q5lNAwr\nN/nJIa5BuKaTlQz85BNGopdJgmWk1xYz7GinnxT6q41rJTOwS/V/3AuT0YTF\ntL8q\r\n=5S+u\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXqpI29QRq8bfLiQHpv63elbdWq2Q9KV4LkOA0N7YgAAiAUvkJJe2RKhlsmIf4xSUMl3brfcqRzmm+6lW/PIKt/bQ=="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.0.0_1589294929738_0.9852782882322535"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.1.0":{"name":"gcs-resumable-upload","version":"3.1.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^3.0.0","google-auth-library":"^6.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^7.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^9.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^12.0.0","sinon":"^9.0.0","typescript":"^3.8.3"},"bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.1.0","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-gB8xH6EjYCv9lfBEL4FK5+AMgTY0feYoNHAYOV5nCuOrDPhy5MOiyJE8WosgxhbKBPS361H7fkwv6CTufEh9bg==","shasum":"f86112b8002f4aa11bd6961d287a351451f10ac7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.1.0.tgz","fileCount":10,"unpackedSize":65229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe86IqCRA9TVsSAnZWagAACzsP/2E0bypEVG8vzNv3qVJv\n4UUesTQ9m9eaW0sJ9H1WWoXKGGB2fFELTgWdG/H7T/pYNV79j8KezvZ7Eoaf\neAKsdc9V3iZQjUrFmgGxG2NrYDPrhqpSwZm21+XuLdl89Owrz65IV6zd61VE\ntnKF4UPy1Qr7FYO1Yf4MQUwD3GXEzFJU4sabRWf9NpFryDCh9EdYg4yVRGsE\nTMwPcGgYOudab/kGi8YUXRHgjbzxvQforbCg8EsG+segka2bs0awPJfAscEi\nqr+Y3/WCBUcxGQSsIc75JBgftNjKB+YFZHzjkg6yZuFPY/+pdq2czy1b7smZ\n8Lpj34JJG1wL54vjyzt2bHGvr3f0OKxVzg04I1AfWqwSacA8NC0wAFmnRC2f\n7gugmueu2tff2OIkacJyAmjbXWl+pWjw3OTCzc5UZG1dhGwuh4+K+0nC0fjd\nCvipjqaTMkthHFX/eRDUWYAI68smO0UuEWu9/etcx2Rw90E1rTiQW8GHKB1O\nENFiqd65TPSA6q9uJLu4NR3wOjssOUO7WTVPt2SNbXZSkxPZpByxMAq34w95\nk9D+cKg1WyCqe0NY3nRCFPh4CHmVu4LjMzVYdhhM92MWtUxfKQzlytLEn5ju\njzbJ1BmyrSRnZG5GZRob1NojfQoY5FbyoglBAGrlxyLkBLP8LE9weQ/RwmEl\nRoWy\r\n=ibU+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEX+fCJ1LdVwE0GLs/B9pQtpYRIuK0tBYCsl/mNnG3K4AiABBW9NUyeyElpCg0qxIzptOsxf7arQNigjKkpqh1driA=="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.1.0_1593025066386_0.8057887213412704"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.1.1":{"name":"gcs-resumable-upload","version":"3.1.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^3.0.0","google-auth-library":"^6.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^7.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^9.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^9.0.0","typescript":"^3.8.3"},"bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.1.1","_nodeVersion":"10.19.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-RS1osvAicj9+MjCc6jAcVL1Pt3tg7NK2C2gXM5nqD1Gs0klF2kj5nnAFSBy97JrtslMIQzpb7iSuxaG8rFWd2A==","shasum":"67c766a0555d6a352f9651b7603337207167d0de","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.1.1.tgz","fileCount":10,"unpackedSize":65576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfB8YtCRA9TVsSAnZWagAA9VkP+gIaC9kIUi4n6NyB9xIE\na3g32iEuGRc1UO1m5zkFx3Ix/EMzGQXCfkxxjIA1LLPbXLJWf9TjMM4tO0Hv\npPUoCWkFL0npPJkrn+rJJ5qW9PoVVvLPYxhCzawCzKYilGWmr28XfWcm4QNF\nJvZ1d3UJIqJHRxkO/zQu23YbwmxqS2+Z+0wLoF2YfjgDMNgMvwKxgTDiv2Fg\nmg3VG0ot41l9pu+U5djKsGXowHAhXBZDsma8nABmUoWKRbHPsFYuOsClDTko\n1j6e2gz6LPdrCovPLicDR69+zb6ueCqEDdYny+qZGx652gmOuL51lqkAJyBm\n/NjGNd/LGPqvbfnzVFqFoW35kUCLe5gnh81EvPH8lAvJyV1bYwMCpEuzRKiK\nvyUHgO2wfCkxFNUNYXMMAr2czVEc2sZi3y5lSmpNUA1std2PAe/Wc5N1d8Bs\nXTyvQ7JxJwClyRrcInT9hpI77kPv8TJuuxcoK8iBr1WRB1mSZWeQqxyCxqw1\nlu2jtZm+BF15EPjxoA8VLWPxZe+RoFtbq59UpFyEWsKydV0GR5gQW1JcXcmW\ngSU9i3bEkIQvrTVbNAS7Ruxq/wXGXzJ4ohvyPUjm3RVCvvDb9vV0C9Ik/P4J\nvcHk7SV+KIXzZR2KLQkB30v6kcxuyYo7fyu396eHX6B//Onq+RaCle76BB9K\nmb46\r\n=4EDd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFGZwsh2abNTKsJcXlLPwFdqS8CdbCN8NVfnSxkzWMFLAiEA9dObBXjY17h99bRH8uUINM4wD7MWnOPJMLBW/tsLfh0="}]},"maintainers":[{"email":"callmehiphop@gmail.com","name":"anonymous"},{"email":"google-cloud@google.com","name":"anonymous"},{"email":"node-team-npm+wombot@google.com","name":"anonymous"},{"email":"jason.dobry@gmail.com","name":"anonymous"},{"email":"jj@geewax.org","name":"anonymous"},{"email":"stephenplusplusplus@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.1.1_1594345004869_0.05364700672282963"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.1.2":{"name":"gcs-resumable-upload","version":"3.1.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean","api-extractor":"api-extractor run --local","api-documenter":"api-documenter yaml --input-folder=temp"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^6.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^9.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^9.0.0","typescript":"^3.8.3","@microsoft/api-documenter":"^7.8.10","@microsoft/api-extractor":"^7.8.10"},"gitHead":"e407d591927c09cb6c52d305ca7038fd96ec943f","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.1.2","_nodeVersion":"12.18.4","_npmVersion":"6.14.6","dist":{"integrity":"sha512-VKWP3Xju1JmNX3N4ossnGp3DfIRZjOsMj8sDGPBGnvn8YSruCOVGQBvELfStfIFPybScv/e5sEdWx/qzfnS3+w==","shasum":"74ba51d791da397da6c856eabda7d059af724998","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.1.2.tgz","fileCount":10,"unpackedSize":66136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/f9MCRA9TVsSAnZWagAAvM4P/A6289gRaI5hQ0YWIBDJ\nCv+r1Eqg/Hg2SQgOw1i/diIO7X3jaTh+yIWtt7A/qxTKCn9xs7bJlffOOl7Q\nyIRP2CxRSRLLOYXp4t5nlQXFUaL5M4HgSwKVX6XNK1npg8MhvSQd+wDip4Hz\nKMno6AySPdOo1d2Far/XOi3V90GSaugnWFxkb/xIjXivMFXYoncJjTce9dK0\nEE3GpYhtO2fW2Wbk9UWXiSekFVRUGXfZ0prVQNNs6FXalHcsq3cArt2QQ75M\nX481LgC0m1glVxIaRr5YegMYbvMJjH9AJa0wLbP/0o/+RS+keWpb2OK1SIKe\nsIgs6ypBOUrmNLEBhhZxmZicB/GWzbkBedBU/X9D7VfTL7PeoDJxcx9F/DRJ\nXSMls1+iHZg5pNw3NG2cNt+xG6nimzIJP1HSNR6v0RvyUMaS3jRgTF2JCrBS\naYuLLbuU0PBCHfd9HTf3PafQuss78h8JtyjzvyTa4X6Vff95G25sRh27e5IU\n85CIdCgEy+2FW/Xb+0kH9vRk8tc/ftXrRbNglhvoS92/AOFvoYRaI3Di/oll\ncg44HemYLbeaK3U2Xhl0pw49DRZxZiogijSuT8cyiZDv5yGH4X/ufv4vXqyJ\n0s+s0EiZNCEpAvPqyvrTV6Ph4hHN9aH2woErRQ+qo3wyw7HZO2QieN7X9FpL\nRB0K\r\n=aNPZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDH5/siWArNY+O6wg2yheWrRJ5YK5xeq9N9H55H9nnHuQIhAJyjSbj0kpPdYEGLmZ7480rqUMMxodXsIP1BBeCQoIzq"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.1.2_1610481483620_0.10016879565024239"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.1.3":{"name":"gcs-resumable-upload","version":"3.1.3","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean","api-extractor":"api-extractor run --local","api-documenter":"api-documenter yaml --input-folder=temp"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^4.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^9.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^9.0.0","typescript":"^3.8.3","@microsoft/api-documenter":"^7.8.10","@microsoft/api-extractor":"^7.8.10"},"gitHead":"e74249742b339ffedc4d22fd7c48884f56881a3e","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.1.3","_nodeVersion":"12.18.4","_npmVersion":"6.14.6","dist":{"integrity":"sha512-LjVrv6YVH0XqBr/iBW0JgRA1ndxhK6zfEFFJR4im51QVTj/4sInOXimY2evDZuSZ75D3bHxTaQAdXRukMc1y+w==","shasum":"1e38e1339600b85812e6430a5ab455453c64cce3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.1.3.tgz","fileCount":10,"unpackedSize":64867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLHcECRA9TVsSAnZWagAASO0P/izKbhvMhrSvhO4frz3k\nx4D2rNhRXRhWU/tE8q5TuXa7evf13XHLxb2+p2Qeku52jMAKDHkfGhTRGcox\nUdnVV12i3CqZMHrLkjKDK+bZuLWVU8XREzKStHBGJnnIIVhPEaELj0fgu7jB\nnRF5i6aV4JSI7Hggdr3r5vnMgoEjiYC1HyXCccrOBoQJvYwSOkV0uaiR+CBP\nBs0kETdyMN+lxP1fTCPrCuZf0+aMMrtwerTS6k8fAbWjEMKiN7ecF+iPN9W6\nvDNqm0rR3Z2bzTwgkuI39mQpQO+TVNh3il82cBS9/mnB85MDmeG6rLmthul2\nXjVggcFOmhk94zforiBWu+fDqljVH5Cn8+b4PXVj9vej/TYz3wp7nENbVgBr\niX9sh19qjVgTISdDD9K8ZxLJrvgH0mN6wjZGB+YnN0Q0oePzGK4Kc3uXcxE6\njpuXC1psjiDjO5TEmQPYYV4sXEInUucOTcN0/mXn7PmzkdzS3NYzPbo7tL5/\nmINMIqJvWtEFw1xYhBWsLOBO6lolCDLP7noKGyok2IYe6PW2PwIMzr2JwDK/\nRydi3t/H0XYvFqC2iKCe/AXGGNcpCaAN0h/M8qVg3SPJqhlzjvqm7EmV/yG/\n9N44LHS2v2lWoXxBTUqiiKAsk3qK3lpN6iEJL6YBW29YMrQZ8eafESxEc4zV\nOeqh\r\n=/NNR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCPyQJ+6bIrexhmSSjGYlelWcn1Eq0SVTndGEcRlwE20AIgYIkimecXiUTxwIi+3txCPt9WFb+T7s/yRK6QL9xO57c="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.1.3_1613526788477_0.5130715810166269"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.1.4":{"name":"gcs-resumable-upload","version":"3.1.4","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean","api-extractor":"api-extractor run --local","api-documenter":"api-documenter yaml --input-folder=temp"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^10.0.0","typescript":"^3.8.3","@microsoft/api-documenter":"^7.8.10","@microsoft/api-extractor":"^7.8.10"},"gitHead":"1cd310e0c0d738ee6ca4f76c99b694f474d25c19","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.1.4","_nodeVersion":"12.22.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-5dyDfHrrVcIskiw/cPssVD4HRiwoHjhk1Nd6h5W3pQ/qffDvhfy4oNCr1f3ZXFPwTnxkCbibsB+73oOM+NvmJQ==","shasum":"2e591889efb02247af26868de300b398346b17b5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.1.4.tgz","fileCount":10,"unpackedSize":66071,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkELeCRA9TVsSAnZWagAAzyoP/2H+eRrQUl/eHwTCaHal\nmQtV9oXFFnT3Ik5IofEAezSbs4rhpbnsEY7ksB9psEzQnfQcL4y5xTGiR7zb\nI+f0KKuKoDlQ9N2ZCeIl5lz2/VuTfseG2cf4aNGMeNpSNgIqE1rKSPJKHL3a\nz+msK+H0lGcIHadArwQYdWHIvXexPbmOMES/Y42oIrSaRul+ml9bgg6mq34H\n+KIDu1mih5Ff2HTPgA02t0WbFYCXAoYyiEu45yUr55UI/ETkU6ujSZTS7g/Z\n1We/P0cbDx8sphxbkaeRw82NlyrZzR6dRTPezTjbLcDGXjIDe5PhuAwMGK5S\nA3tZPK119RpZ0X0HW1hJClqnqI62c5aHNWCbrXExYrkFLmQGDsDgsC7tSdGX\nbqbkyR5be2Rm9LzDkAbG5V0wLdnKdHBP6ml2wjQE5lf726R+H5InARTvaM0n\nUDNenX/mHrkDQ+9EenI6my/g4QpBcOR8ZUr/chVbpcNMIo9Q+bmqIOcYY//u\nPm3wqXEwuY2mMai5Zq8GPpNcf5/d9bTupZmpehJintr/NhmPDUfwnaI7NziM\nqCo8yPW92grO6D+dq0gni/LQcpQDIH3LeooWWyNlUSh1kNDgeRRVa2V8eH2V\nrekqAjAi3M2ZOxy0gQ6St0fPKgp3AfCHn5PvdukOAS+akDEajW/DyVugJcR9\nKi9/\r\n=mmbD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5X6NLApLpu2bTsRR/gPr0Svgh6n5De/fPjuGn1rCuMwIhANlYJMJhvelbLR6bp7GPXzxsflAbjqWExZ0zDyFVMiTn"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.1.4_1620067037902_0.30438113042918014"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.2.0":{"name":"gcs-resumable-upload","version":"3.2.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean","api-extractor":"api-extractor run --local","api-documenter":"api-documenter yaml --input-folder=temp"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^11.0.0","typescript":"^3.8.3","@microsoft/api-documenter":"^7.8.10","@microsoft/api-extractor":"^7.8.10"},"gitHead":"973a3fcec1a06948627a7770bef562c749a21847","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.2.0","_nodeVersion":"12.22.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-k6OAkrO0N1zgvwTRxgCC43K9BMvNUBhZkkFELsMSlgAVs7Sd9C1TA9pmDLBZmFBN8sdvrObsSbCfOOFnHULRvA==","shasum":"9b96b835dcc552523900b60371f3d3bc1f204717","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.2.0.tgz","fileCount":10,"unpackedSize":66462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwbNtCRA9TVsSAnZWagAAH/4P/iddrQLf8aDGmTiJJ8Z3\n9S/21HtM2RbHH51UEIKkaGPwBLmF97RKx1qZEHXeeVDX3Mdw4mwlxRFHtUJp\npWRc09ZPcndSVyRTS2vLoZzyLpAYoPZgyGTvkxJYeoXMlMEJ09ESSqbaC+mQ\nJXaPB2W+917cVEb2Zkl6d8bcXk7NOY94zuyp2D2Va2ChXqMyxVyH4IqDWVlZ\nL2d87IV7wRiWO4SqL3DNi0PtfNXjpetm7tJ0tRK+iPOx0rrub1LUt9Bc7a2A\nkzQfGCL8e5LCT8UQIt1e5aqLLuKPoaNIYWhwmtCHGqmcHxebe5sk/0YOuH47\n5rNx2b6TPCEy5OzHEYuCiTAVW5wy0S/6spo0vuWbb00wlfBhMbD4eqO4nOHh\nBnPF/gzGIfTpS58wtX6r0FRPfx+I2dEX7H0O2/Q83vJV+R8f6TgC0UnIpE/l\nP0Njdg4F4w0SBs29aswmZV8c2Irp/SMT0GDl75CPws1hoHvoO3iM7xoyUhH5\nuYBRvLO2zkfJtO/R7EnJEIGhBIWqlB8MxH3caLu4W1QxddJrHt2GwALcCBki\nj1j2n4GOZxz525u83QT2MQs5PgUD7HXNSUgaBQGRTHT3p3tbGuNVYPeaXt2s\nfcUUgaWW3qhMDSUWKeXc7sQJbFEicypiMYzRns4SjwWfuImfU5ivrwqaXrDE\n4H0Z\r\n=G58o\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC36PQXlPYzrBdNfOHIZmF3YvPQeI7XcxeTbJnwgp812gIgAT+p5viPbckQ7iCVJKj3xe/H8Z+uXPWgzICN4EZnb5M="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.2.0_1623307116973_0.3158665840428634"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.2.1":{"name":"gcs-resumable-upload","version":"3.2.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/nock":"^10.0.0","@types/node":"^10.3.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","assert-rejects":"^1.0.0","c8":"^7.0.0","codecov":"^3.0.4","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^11.0.0","typescript":"^3.8.3"},"gitHead":"2c8516869e17a8c4f41f6b3bc3f16433746ed0f9","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.2.1","_nodeVersion":"12.22.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-T7YPQVPFibgt6DmJVPGIgY8jHF9ycGJVDRCutwMBp/7Y2++QYEW8drL9XUdzS6ZvEiwTKvgvGMG77yb63XwSXA==","shasum":"99de8557f15a2946e54c294c58c743ec95b65907","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.2.1.tgz","fileCount":10,"unpackedSize":66751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2hb7CRA9TVsSAnZWagAAgzIP/irNBLjFNx9KoV1ACiwm\nqUL4zk+BTfUE8nGip75hb9L/ZMTJbSgctNn7riiHCELjk3YUuo2QvBGYVt8T\nwleGYp4kueLZ98Tmk598a0RkPS/rNJCQtwp9iNiJ/TKuf00G4xcrw0cOliIm\n0tP83IrMpfw6PhTS4vkrDoeXn7tzeP5bq8JL44s0KPOneaoTESC/92G1kWLI\nI3Q0klIfdY99sq4pvZVL96oJQMAp0Ay8EoEhWn0HvyMeGVb3Gt3piacrkArB\nmzxZjggmLVrQr8+Gz3LHtatndJMTSVjYzg8LaJWCmGfkFJeXkmSGR/csK/K+\n5wmNMCDBbwouHTPu+Ky+OkfugLKsXf8qKb3X0oQSMIr56WvYFzp2qknKUpv6\ndUfQy4qrAFjP4MOanfGYKbHmlYK42dNXxsg+PupcD5wIi78DcO050fAaBp+0\nMdk0XMdpXCHsEshh2x5NAylNW1nID2j4B9ffa7nSt0im6aNH7BJy0zWWaTiM\nrIDtFQ9Z1AfcSNWRpkIkfgdEJNrX158jP0eUFjWuetuXq3CZ/rCLtAT2nPA/\nwKxx7RxXtJ4oQ1LfyaAQMOx4Ly/CO7+7Zm/pIkhcvsnKR+Y7qHYMfkJUqgGC\nqab5fqr6h1c/E8M97zg9DVtsbfygbWgAjX0ITY5YbahzXP+riBFUF3Xq/qP6\nWgut\r\n=p/T8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD4cLc8ZE4fj2anKlJmDoQUJgM6tTttab81p/uESIVh+gIgPXXJVyJkj7Or8fKJ2xoSfRYMOK+JnUDpD0InC1Mywu8="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.2.1_1624905466706_0.3348821013991343"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.3.0":{"name":"gcs-resumable-upload","version":"3.3.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^14.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^11.0.0","typescript":"^3.8.3"},"gitHead":"cba689d04cc078a7f00486acdef11ddcacfde034","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.3.0","_nodeVersion":"12.22.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-MQKWi+9hOSTyg5/SI1NBW4gAjL1wlkoevHefvr1PCBBXH4uKYLsug5qRrcotWKolDPLfWS51cWaHRN0CTtQNZw==","shasum":"d1a866173f9b47e045d4406cafaa658dbb01e624","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.3.0.tgz","fileCount":10,"unpackedSize":73301,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9dtTCRA9TVsSAnZWagAAkegP/2OiYitiHJ8SUbv/TGFG\nMC5CacA9i7nhmtpUeO1xDuCW0VadAz1DjCqNLBGahi8ZGoy3cj3QazeF+lhF\n08KtccDT9EDAzKscIvH0027wYmW3Zr/aEUrzI7lwqQTQ2zPtuVDoAPCW1jz8\nwrqPSokV8LcyZEqmc8Pwha0wH+uh+34ZGQtnhw3N+68I4rhv1ABCUd5xC1qM\nbHOsNULZtR9EZLf/BFRzU5bazehMjkgizl1CzjNLL3lqM/rdfzHZSN0m7GP3\npy24lqDXUL8m6U3rFFoWjEzoHfNeAQXe+poPApok3jduZgTA47sDriYBtmyD\nCfMfuq5BWD1EZ29y9KcKzig6Wg8JOMfC+ur7HynvhGoaAe3YZRsIV9R2JHYC\nGRvy9PtbwPgLKOH6Jw5fSTLqxVcHfSjaFLi2S6yZUCpH5mozCgUsWVZWVlqV\niOMX91WxLZh0sckRnkyH/nzRFKoeavAqjh2t9tY4io7JZs7RQZSTldaKvwrn\nlznRNtLV1AYp83A7jbbPmExBxll76GmhD6jGBCDP4IUjdHP+B+pUwrp06QU2\nhXESSSWdUOFppJParInjLQ/cxoNExq/TcGZ298k7d5UZRUYIeJ2rOIUVkDut\nRjl490cocbHP80p0aKF08xLubcdCl0rroHLJkSXYxA/LmJlzzWN6VNGHZ8yd\nsJly\r\n=0vDZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDYvWr+fFcYbt0y2Xhkf2PswsDb9sU4iFCu9UFnkkNQfAIhAMXK8oSo4yWraQlFPrHCG2YARb9DSnDW+xVmpf4dUvU5"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.3.0_1626725203814_0.6703005411523815"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.3.1":{"name":"gcs-resumable-upload","version":"3.3.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^14.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^11.0.0","typescript":"^3.8.3"},"gitHead":"d9d33206d29ba05765413f7665478a9b272b499e","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.3.1","_nodeVersion":"12.22.4","_npmVersion":"6.14.14","dist":{"integrity":"sha512-WyC0i4VkslIdrdmeM5PNuGzANALLXTG5RoHb08OE30gYT+FEvCDPiA8KOjV2s1wOu9ngEW4+IuzBjtP/ni7UdQ==","shasum":"bb3b0d776ce64b7c40d81fffadac7d54d878a9f3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.3.1.tgz","fileCount":10,"unpackedSize":73659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMVxzCRA9TVsSAnZWagAAS04P/0xsWb5+BziZ27TKWO6V\ntwsYlj5kBI4VEBr0STUqz4DP+BFWz212i2Z7WrvAQwkER6K11SNOwxPSiXi7\nJhp+hA32jzaVvP1DF7ugwSUV6/ZwnvAp12vRSlUs6kOAYWPKHdGlhFr8d00N\npz/Dlh4EK8XBwcXwBLcnm6dbF8AQU/WIAuwPfRFdX8zirfDUtsvQzBi2CWdu\nV7ZFDjwuRNiN7kLyWLdVsjVz9XhgJ0H2hlvUuxeoKFLLe9fOiWqxS6t4UEE2\nof6rIyai6uRlKCppW0nNdu9IdEFTCVskXC9TfmsI8IYZfaQJMjTSi2x/9Unm\ngWqUxIG/8W9RdxRWOtDoR8A7oUrxFbJTNEiXLiFMfic636jzf5njqvLYwzY6\nyMIV6mWn1wQN9rRdxJYKvXXxDj/dMpnO+2qqq91D7DQeooD/irblNv7537xP\nZ/0K/+27S6AP4tH091zumKtrelgNLKHwx7JemCi5AWbp51VDvbEovDoE2Nlr\nxd0Hjblb2FWAE4bvxJ01AzB3qT09Dmcr/vnopFGqLtVQS6lMSdTOd2LWYMdE\nMyT3DsRaUn5FvVMDIzh2Ef3oCufEH+C50HlTLi2SMcDmCpnfTFfUzfU+DC9t\nAsjK9h8DxlerUvlASORK35lqLF8OeZdXY4NP6fCm2KanKbtL0hNQkSSjUfsh\nzjwg\r\n=lvYZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDOlOZENK4ZleY3nDmkR1v3+epXGCLRJ09DYgTzQSVdHAiEAnAEfRkpQjzRnK69/lZqd85xDhFlTFOdI8yvviGXIjLU="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.3.1_1630624883501_0.1849865795486778"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.4.0":{"name":"gcs-resumable-upload","version":"3.4.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^11.0.0","typescript":"^3.8.3"},"gitHead":"f3977a45cb18c39e9a972e8a1dd34796c8807a47","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.4.0","_nodeVersion":"12.22.4","_npmVersion":"6.14.14","dist":{"integrity":"sha512-/x1iDHkOAMxHTPHESE/pzVynG7zkNhOVZu2wvO0lRnzbPMBh2nznVHXkm9nxd6iabac1PXyqwuCaTqfU/9107A==","shasum":"91e3058df4c2a27a2ee71b4c7b3bb67b1eb30d73","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.4.0.tgz","fileCount":10,"unpackedSize":76427,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2VstbIU4E2W3PyhvtJw2S1zWkbYFQRcx5cWmrKNzRtgIhALOKhw9mmxQLZtO4HURBCIizu9wa+uCB18LL5BwvFVhi"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.4.0_1635970065085_0.9159353953795624"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.5.0":{"name":"gcs-resumable-upload","version":"3.5.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^12.0.0","typescript":"^3.8.3"},"gitHead":"a61e34fe9463dca82840a3573268d647342b7ac1","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.5.0","_nodeVersion":"12.22.4","_npmVersion":"6.14.14","dist":{"integrity":"sha512-PmFucd6thhixsvmaFqznpkq7A1ZCV6N/jXg+biZt6gZnQ8zZf7PD7Pss5eDpCwn5wABnYi0j4/O5uFrDeYJcEQ==","shasum":"6742bb1c3b23151379a026569b8f0c8c541295d2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.5.0.tgz","fileCount":10,"unpackedSize":76681,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBrwBsBLO+xNZ1GjToqPHryIknIWUrNzPqGeHkGEkdwgIhAOFvETWaQAZjbCGmYx+XGS9+DgMeqW9H46GjpM4hyjAZ"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.5.0_1636049352171_0.5812768610081112"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.5.1":{"name":"gcs-resumable-upload","version":"3.5.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^12.0.0","typescript":"^3.8.3"},"gitHead":"644d71b1a9a2d22d16080104d502048685182458","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.5.1","_nodeVersion":"12.22.4","_npmVersion":"6.14.14","dist":{"integrity":"sha512-yq8h+z2zx9pUUdho07ORfNkrzlXNZTXi1fnqf0K1oh8VwleQjRq/2zgkN88MYDpXlaykvzvqbWJGq/78nufuJg==","shasum":"35b08ea42c521b06ff002df85bcab00c4ade72d9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.5.1.tgz","fileCount":10,"unpackedSize":77019,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFS1KXCvZ3RViuRrs4XyindyHzgcPwzgZvLNoQjaTSG5AiAebH88eZfa9AcFmSfC+l1YoQmoSr6w2vI9zMm6kPMr4A=="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.5.1_1636060175731_0.09614309244511521"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"3.6.0":{"name":"gcs-resumable-upload","version":"3.6.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/is-stream":"^1.1.0","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","is-stream":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^12.0.0","typescript":"^3.8.3"},"gitHead":"26c726010e39c5a8da36f4282c91fc7ac9222501","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@3.6.0","_nodeVersion":"12.22.4","_npmVersion":"6.14.14","dist":{"integrity":"sha512-IyaNs4tx3Mp2UKn0CltRUiW/ZXYFlBNuK/V+ixs80chzVD+BJq3+8bfiganATFfCoMluAjokF9EswNJdVuOs8A==","shasum":"6a2fdf3ba1bc00d956d119427b5fc963d1fcdb79","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-3.6.0.tgz","fileCount":10,"unpackedSize":77619,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQChTE8xt/pONFDCn0s6kdSUwMChCWvjjOcUTzGvhIWa1QIgS5WbA8J2ki9G4BiK2gqj1fILw1h9QIIY7C/gAgaZu5c="}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_3.6.0_1636485688698_0.22931399354195814"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"4.0.0":{"name":"gcs-resumable-upload","version":"4.0.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^12.0.0","typescript":"^3.8.3"},"gitHead":"985d788aca618a4e8137d73c6b3389b154a3f418","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@4.0.0","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-pySE4naYcZbEEZjVJflrkgKEB6e+Mn06/sxtZdCKTw6bki06GH2DFPUve5e5ykdanA7fRubXqUxG5V8sjj5ccw==","shasum":"4050ea8ae71932ce8c329698e09ebffef2d1b81e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-4.0.0.tgz","fileCount":10,"unpackedSize":99729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1J9aCRA9TVsSAnZWagAAWDIQAIlJhLOnEPz2tJ/kWJG+\nVjgLM3msAVT+rsuUL7N2SeBUNkEf/DCNI8ZV5akxQOsQPIjOis5Ps3ksLfBU\n2602j1hOa2O0lQPhTKsD8wlPVQyMN8mkTPHisf6BpcX106ybHeAQQ7q9CbtV\nfngSEzdESeUpsbEuPSQlSeWNnt9nbhHrjaxH9lx8cONigRlN15VGS9hPSptx\n1SKz/T3lx+sOIsJ+XaLwbyxGfLrRlCGWW0/osF01FaTgEzbSDkX+YsafLQJg\ngzs7VvQYvxfGLHwz1Kt2AQ0gYD5mtWlPOf/iHOt9OwzzdiT0GGvLxMsXM1Os\n0jixeLH3JMD5jwyCJeHBlYlcP0zbTDhcV7XtAEX5ccuSxP5IoNrjJvyxXO2m\nx47MHFc52bjKqzNH5a/rcLItA6F4coFQkUxtIWKzuPctUNSd5/HVfrY8HmgW\nuMZu2zwYxPhJ3d9+PkGAUizmh9ITICpdmaZGlBAWq5GXoGwYrH4GO+7jlJFs\nbKUNLq58TDgyAeYkdnaIjEPqafN3jYf5KnfCFXQTj7/72obN0TN0kmbfdxsE\nUBDxxbrDP2ZSfX0r2PWgXQSyZacmmC3j/6JwP8Uc+fsmwrl/yv2rJax0KwEu\nIFeYwoMPgbfUC3A/mcgcyyKaU2mULV9HotyjMuj+r1LaXvZOjdhCQegkj3dq\nTaKZ\r\n=75PD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCYYrxd/avtzJZOA4oZTa5eMQSDpR805XQNfKcEpnIYrAIhALRIh3U/pLy5NlB183Aj82oXaW8DHIjCF6UFLCWzF9Q2"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_4.0.0_1641324378450_0.9654584186534851"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"4.0.1":{"name":"gcs-resumable-upload","version":"4.0.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^12.0.0","typescript":"^3.8.3"},"gitHead":"f822cf602c5c5f19e8436b41e3ba56d6eb16a073","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@4.0.1","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-6Fwi0LmRGR+6tLP6hRzVnDGJ0hqWvXDIOdorU6oI0Vk/A8I+H8Jok1b7CuEKETubd+47nR0J9dfsECkPYazhWg==","shasum":"15375b36911e562e8a29bff69a02094177c3d19e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-4.0.1.tgz","fileCount":10,"unpackedSize":100537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh10H1CRA9TVsSAnZWagAAFqcQAJqfMAfijywUqH8bNhIj\nqj5hoK1xD/rZPaYmzWq8YTq8i1RYqAwGNEQ4GXMv0Qy9vN9jQ/nS9BuqMsjf\nmtDr8mlJD+fiCwOQk93YImX5Sc8ecUrdEvyXT/r1IkL0QH1tCHQMcrJmJhJX\n+9gtXC5nFLWYNZfWk8vBfuE22MjPvvjJ3At0o+h05/DMA2WyIIlmoHF5GrLz\nEIEbec3f+4p764iXc82gUkyXKkXJ+EyqMc58Bt/myyXTHi32ApVoiqCI/9OA\nmJ/eNILniw3vKWEzIsHp6NTyMjrP7oNHiINCuuAdctWrAWs/zlCIiy/qNQY3\neIEgoxIgKRhD8vuZpn5pLFrsKcoVrcupc7CcrBGo5/fKeTcHz0kobAMA/Jiq\n474QWn4p3eF8A7xPdQ77gdTqNSVY+pmsO2jcq+XfCSgby1euwJcIGcVU7xKB\nl/bBSZS46ql0RHKYPssY8jccaWwYiFPp34gTR686nESTuYqvdl6HCuNmZQyy\nnSPWgW36RYkPghtk+AqISUxEzxyXNBjUpmpdD37TxDzEyDbfSrkVKGPz8cpZ\nW3hf/g7dLXyOw/e9Rt1JH/xfF44/4afQx3QPcNt0L03yXLQ4olplZMcWJap7\nx6jskAn3X3P6b9nDDW0v6J3uK3T/uUC/XZ3fTQqvVzj+rADzN/2NXaWS7jno\ndF9b\r\n=I/+6\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC76pzi72qNmUXfTtQnFv38mWMmGWZd9c1UCR6tOGNbCwIhAN/9AiRfI9AEGoDdg76j17VyFy50i2SFQ/qDuIwxLrcs"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_4.0.1_1641497077323_0.4711946571049621"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"4.0.2":{"name":"gcs-resumable-upload","version":"4.0.2","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=10"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^7.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/mocha":"^8.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^2.0.0","linkinator":"^2.0.0","mocha":"^8.0.0","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^12.0.0","typescript":"^3.8.3"},"gitHead":"b2bee97fdf123de845b4417a6b47575a2175cc3a","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@4.0.2","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-mVJw+0WIRAV1ek1XwfkAfuglCfh/K3PbWqlnFnbHge7xcMHXRP9Gcflx1a0PZNdA3dcgs4PbGAvzYzu1SRmOAA==","shasum":"aab27639995f1254ba42f73e99ec1c28bcbbfc84","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-4.0.2.tgz","fileCount":10,"unpackedSize":100797,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8aC5CRA9TVsSAnZWagAAC4MP/0BhuNrOFwM5zsh/uRWZ\nZb1veAFmYyRbqvcf1uoMtytY/rqK2Iy6Z5iObnqNRpnoroaxdfXdHQRKTOa5\nw+OiWCO9UVuzb14HL4OLm+n80IuPpnm8ouz6YYE2jaLE1oCyeBW3xm3rK5ey\noURUPOUlvyoFi2Txjey2NwV65it65FyT6OeMO8fRNWeH8jrgireXXZJb59BH\nM5kiPD0IL2YI34n+PnB6YwwunUQ+O1+uIGi1BeapMX8rQIiaCpNm+Kpkh+01\nHNqq6cP5eBgPBiR7D1qddgAHq6RcJQt54ph8fodWLsUPWV5gK4OnumJAIJD+\n8gH85zb5pctknw2Bo2PV9GR3UupDlHDOfW/ZTXlbJEwrnMn3dE8BTFRHOMLg\nJGE22LJDLdD6kk3FKZTBhvNPY7EDwNAz2YZrh/av4KyQfWeoDaEEAsZqDjMF\ni1J958WFg22tEKJV9Al9z3x2xJ1TDYMtMX2c+MtsG0RFfcxiYo14AkNhVKMk\nmJKu2qranbYXWg/CFUERIBrRpVrZz/M1ajf0TWSKZMDIL5uFF/733/fcNnGD\ntjijppK+R/DX5xEsGjclrLTmZ9D8fa4gqRJM0wH/cLgrJkpvN0bc19PSCj22\n0NCshBG5WzbqTMvvx98OzfNyfaPMCOma+LvULcdiJQ5BmpExQW6T02VMXRrg\nhUOH\r\n=v5nv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBoDl7Mmu8rN3sbCyeophNHL3FD5UHyn7azgsdxMYG1AIhAMIMJ88gmxzqWOXv5z1PMg6rgCsmwkNHRWSZyHR53b6R"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_4.0.2_1643225273183_0.5495423152523831"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"5.0.0":{"name":"gcs-resumable-upload","version":"5.0.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=12.0.0"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^8.0.2","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/mocha":"^9.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^3.1.0","linkinator":"^2.0.0","mocha":"^9.2.2","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^14.0.0","typescript":"^4.6.4"},"gitHead":"cf27d66fc714aa2cf49624eb423240b23e19dd9f","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@5.0.0","_nodeVersion":"12.22.7","_npmVersion":"6.14.15","dist":{"integrity":"sha512-w4busYkAUbEaLcofLikJkOcFoJcaLM/Lxak1PdB0MJEHt7gDcdeaH1R/QUY4S9oIV9gpGxw55YnpasGCKE7cXw==","shasum":"c281db4d8ef1ca6d33d85da9fee7ef5ed5f96394","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-5.0.0.tgz","fileCount":10,"unpackedSize":101376,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEsDP0W4iEiFPb6pNNii68xAYsUnnOB9oApFZZSkgKr9AiEA6hli/gH4HuxZ/yPAkFGzWIXM/6XI8JHmWCeEE95vYQc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijOGtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAIw//QvZ+QhW/kXsrkrn3V0qEV9fNI85Yk7BpTMRO1jIeVKfkX2Rb\r\njhSRiHik/y1AxiqyFFMEUZRFum7/2PkCDmjevkxRhd4GczLqRcPbGvPJxYMz\r\nwGio78mD0lmG1aLKnoQokz2rtMDSi582WSnULXjiUldMIXQ7m8UckiuxatvD\r\nuGCWyQN/A3kjpOiDVZNt+1I+CiyF2kRkM4l01xhaBae9YIbhT1XdWGEjA5Qn\r\nuO3m/ckwtI0q5wuBNYSTWTkjZzUJktVRZalWyarfSkW37Lb/bBVOYpkp9dKU\r\n0t9FFHP5p/yAEbWlsXwMKWGhaUddkYMq1/CsmsPemq/NM0w/zJVDGZOfPtl6\r\n+f6sbJr8wxMXvOyk+HxqpzQJZ/yjSlXaqFppaFyvnLQ7tPKcT+U3aPEkosFr\r\nQG+mnVO0/MIMGa8kVZJHfhO+I/FzrJ/pi4CNxUcbMAg4w7bhSejXU2mtnUqS\r\nlDTlrO/LPqqTMA3Fv2I8xkA5/Xy8yCe0UBaQkcqLfS8CG3TWVlY48sqWsI74\r\n5QTShKSy1EtwKb1Jsv3OaWclGzR+kIfUKNJOz0X1DN/YJH1jD5QJJ31mzJYp\r\nbZK543grhLXRuFCKG3ds4V27dnwkfAn/bsjZBCUmRD8YSqro+74xvOry0yCb\r\n3glOUVDZwqlBHEC6Luvln1X0THOrJZUKqpE=\r\n=MpFV\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_5.0.0_1653399981639_0.961859067413732"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"5.0.1":{"name":"gcs-resumable-upload","version":"5.0.1","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=12.0.0"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^4.0.0","google-auth-library":"^8.0.2","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/mocha":"^9.0.0","@types/mockery":"^1.4.29","@types/node":"^16.0.0","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^7.0.0","gts":"^3.1.0","linkinator":"^4.0.0","mocha":"^9.2.2","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^14.0.0","typescript":"^4.6.4"},"gitHead":"baa866e73fe9313a4a54a46449d3ff270f193c20","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@5.0.1","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-Glu55c3SmCjBkdzoU+B/LTq1UERRfZknqr0XSDQVLoAjZhxh7lXqQiycb8xVXGsJ2NWN+/yIxHvdsaV2ZAYyeA==","shasum":"d4214b8d7675e7f098cfaa973716505806024cec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-5.0.1.tgz","fileCount":10,"unpackedSize":101784,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCc5MoTPAorg0ab+8Ob5qm8lq9JU0iXpsiRXqeuv7dIFAIhAOYJbZh+K77ESVxXotFBck97BV2FLLoSmrxmSS2Y/pO9"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMcguACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrRRw//ZgOTWsjc1IQFlHxjUuud5qafBx4kx1mN07Iao6k3m3uz2SS9\r\n/LXTUHgwSQVdWOz5pio1YxTpdeewYYnBWZk3W3YrEqhluF+9qFkJOV5dCuk/\r\nc6Pq3CXsCvvAYJODvHh9PLzj/5ZqbPbdVZ3WxQkxfwEOH5a5+X8ihe84aJp3\r\nF5MyI425qPyzIMFuOlLr0V/4jc+tEY3NW9MmVZDOeuWhCnajoFpnF0Yt6D+Z\r\n+sJDRduOMYDkxS8PMeJwPgXV4Owa9h5xjdXTG0XNLgUmxelr7sARpNlhThcA\r\no5vcg1kb2RzQeiFlAXgX6ZL9W13Pzl3DmPcdXUoLzYN5id9GN9a6MoMIQ78v\r\nfihJ3wGWoPGcag3pU/kOvgn4XSv0vdqydB+/d1aHGtLN+1SZtons8MotWrky\r\ni005n3zE44vL9IQTy+ueOFeU2f9028eAtDv/u7bJB6AbPzqorJVGTy8QnEPR\r\nNkryL7up26fxTzfYbAFT3lS4EKN4HxnfvtNgvbIBVDHasoa0mRYCzS6Qtjm0\r\n7CvXKNxMyUqDHZyMXC7yoGugQ7lNO9azmWs3vP4gj2xB63rIBCCCpw08hsfK\r\njbKaQkxRRburuX1+GgrjXIp5ygnpi9jEbjh1d8hYelqcrva1NX1hq0jrfmkQ\r\nvb/9YHcNLSOsRIvN0hsc6lX94d1hX5vjqoE=\r\n=MlNt\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_5.0.1_1664206894524_0.43034902174163436"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"},"6.0.0":{"name":"gcs-resumable-upload","version":"6.0.0","description":"Upload a file to Google Cloud Storage with built-in resumable behavior","repository":{"type":"git","url":"git+https://github.com/googleapis/gcs-resumable-upload.git"},"main":"build/src/index.js","types":"build/src/index.d.ts","bin":{"gcs-upload":"build/src/cli.js"},"scripts":{"test":"c8 mocha build/test","lint":"gts check","clean":"gts clean","compile":"tsc -p .","fix":"gts fix","prepare":"npm run compile","pretest":"npm run compile","system-test":"mocha build/system-test --timeout 60000","samples-test":"echo no samples 🤷‍♂️","presystem-test":"npm run compile","docs":"compodoc src/","docs-test":"linkinator docs","predocs-test":"npm run docs","prelint":"cd samples; npm link ../; npm install","precompile":"gts clean"},"keywords":["google","gcloud","storage","gcs","upload","resumable"],"author":{"name":"Stephen Sawchuk","email":"sawchuk@gmail.com"},"license":"MIT","engines":{"node":">=14.0.0"},"dependencies":{"abort-controller":"^3.0.0","async-retry":"^1.3.3","configstore":"^5.0.0","extend":"^3.0.2","gaxios":"^6.0.4","google-auth-library":"^9.0.0","pumpify":"^2.0.0","stream-events":"^1.0.4"},"devDependencies":{"@compodoc/compodoc":"^1.1.7","@types/async-retry":"^1.4.3","@types/configstore":"^5.0.0","@types/extend":"^3.0.1","@types/mocha":"^9.0.0","@types/mockery":"^1.4.29","@types/node":"^20.4.9","@types/pumpify":"^1.4.1","@types/sinon":"^10.0.0","c8":"^8.0.1","gts":"^5.0.0","linkinator":"^4.0.0","mocha":"^9.2.2","mockery":"^2.1.0","nock":"^13.0.0","sinon":"^15.0.0","typescript":"^5.1.6"},"_resolved":"","_integrity":"","_from":"file:gcs-resumable-upload-6.0.0.tgz","bugs":{"url":"https://github.com/googleapis/gcs-resumable-upload/issues"},"homepage":"https://github.com/googleapis/gcs-resumable-upload#readme","_id":"gcs-resumable-upload@6.0.0","_nodeVersion":"14.21.3","_npmVersion":"6.14.18","dist":{"integrity":"sha512-2RW1D/cEGVON0vbzXiIDaU6cad68V9ZDekPHzBNToRmkwSomOlyzJyPYN1bI+4UGVZHzf/EJqv203vgTcIr4PA==","shasum":"10a52d982407d5a486f6ab84de5b0152470bb522","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/gcs-resumable-upload/-/gcs-resumable-upload-6.0.0.tgz","fileCount":10,"unpackedSize":102317,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDW6wRh9LGVNVHemGRW6IyI0OHHUQ424aGobw4Dtb9gkQIhAMfgATfDmpRQ9LGEKyick+A1iE7UXsgNPP3e/U+DbRdr"}]},"_npmUser":{"name":"anonymous","email":"node-team-npm+wombot@google.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"node-team-npm+wombot@google.com"},{"name":"anonymous","email":"jason.dobry@gmail.com"},{"name":"anonymous","email":"callmehiphop@gmail.com"},{"name":"anonymous","email":"jj@geewax.org"},{"name":"anonymous","email":"stephenplusplusplus@gmail.com"},{"name":"anonymous","email":"google-cloud@google.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gcs-resumable-upload_6.0.0_1691701800853_0.19485024933986206"},"_hasShrinkwrap":false,"deprecated":"gcs-resumable-upload is deprecated. Support will end on 11/01/2023"}},"name":"gcs-resumable-upload","time":{"modified":"2023-10-11T20:26:27.568Z","created":"2015-08-28T17:40:27.719Z","0.1.0":"2015-08-28T17:40:27.719Z","0.2.0":"2015-08-31T18:48:05.165Z","0.2.1":"2015-09-02T23:10:42.563Z","0.2.2":"2015-09-09T02:48:14.710Z","0.3.0":"2015-12-10T19:23:38.915Z","0.4.0":"2016-02-01T20:33:39.379Z","0.4.1":"2016-02-02T21:38:50.852Z","0.4.2":"2016-03-21T12:35:32.570Z","0.4.3":"2016-04-04T13:42:33.019Z","0.5.0":"2016-05-02T18:26:42.727Z","0.6.0":"2016-05-17T12:28:32.631Z","0.6.1":"2016-06-01T11:42:41.372Z","0.7.0":"2016-06-10T14:35:38.900Z","0.7.1":"2016-06-10T17:21:44.205Z","0.7.2":"2016-06-27T16:13:19.104Z","0.7.3":"2016-06-27T16:54:01.819Z","0.7.4":"2016-09-26T13:34:19.243Z","0.7.5":"2017-04-07T18:25:47.621Z","0.7.6":"2017-04-07T20:13:10.519Z","0.7.7":"2017-05-22T13:49:46.992Z","0.8.0":"2017-06-16T19:21:02.855Z","0.8.1":"2017-08-02T17:00:22.167Z","0.8.2":"2017-09-21T14:20:38.720Z","0.9.0":"2018-01-11T01:29:04.191Z","0.10.0":"2018-04-11T21:09:19.763Z","0.10.1":"2018-04-12T14:27:01.110Z","0.10.2":"2018-04-18T17:29:20.929Z","0.11.0":"2018-05-07T13:35:37.840Z","0.11.1":"2018-06-27T17:17:51.443Z","0.12.0":"2018-08-01T01:32:32.355Z","0.13.0":"2018-09-06T18:11:57.359Z","0.14.0":"2019-01-24T15:05:41.218Z","0.14.1":"2019-01-25T19:19:12.629Z","1.0.0":"2019-02-28T15:06:20.807Z","1.1.0":"2019-03-26T15:36:12.915Z","2.0.0":"2019-05-09T19:49:12.526Z","2.1.0":"2019-06-19T14:34:12.712Z","2.1.1":"2019-06-20T15:04:12.590Z","2.2.0":"2019-07-15T14:20:18.344Z","2.2.1":"2019-07-17T19:20:21.695Z","2.2.2":"2019-07-17T22:51:48.916Z","2.2.3":"2019-07-30T16:29:29.861Z","2.2.4":"2019-08-15T16:04:36.703Z","2.2.5":"2019-09-09T14:04:28.285Z","2.3.0":"2019-10-14T14:07:09.435Z","2.3.1":"2019-11-15T01:05:25.106Z","2.3.2":"2019-12-05T21:20:36.957Z","2.3.3":"2020-03-11T23:18:56.476Z","3.0.0":"2020-05-12T14:48:49.856Z","3.1.0":"2020-06-24T18:57:46.523Z","3.1.1":"2020-07-10T01:36:44.986Z","3.1.2":"2021-01-12T19:58:03.728Z","3.1.3":"2021-02-17T01:53:08.653Z","3.1.4":"2021-05-03T18:37:18.079Z","3.2.0":"2021-06-10T06:38:37.101Z","3.2.1":"2021-06-28T18:37:46.839Z","3.3.0":"2021-07-19T20:06:43.950Z","3.3.1":"2021-09-02T23:21:23.683Z","3.4.0":"2021-11-03T20:07:45.303Z","3.5.0":"2021-11-04T18:09:12.336Z","3.5.1":"2021-11-04T21:09:35.865Z","3.6.0":"2021-11-09T19:21:28.890Z","4.0.0":"2022-01-04T19:26:18.593Z","4.0.1":"2022-01-06T19:24:37.491Z","4.0.2":"2022-01-26T19:27:53.281Z","5.0.0":"2022-05-24T13:46:21.810Z","5.0.1":"2022-09-26T15:41:34.669Z","6.0.0":"2023-08-10T21:10:01.017Z"},"readmeFilename":"README.md","homepage":"https://github.com/googleapis/gcs-resumable-upload#readme"}