diff --git a/src/storage/gcs.js b/src/storage/gcs.js index 1e1fd95c4..93e0c0523 100644 --- a/src/storage/gcs.js +++ b/src/storage/gcs.js @@ -19,17 +19,15 @@ exports = module.exports = { }; var assert = require('assert'), - GCS = require('@google-cloud/storage'), + async = require('async'), BackupsError = require('../backups.js').BackupsError, - chunk = require('lodash.chunk'), debug = require('debug')('box:storage/gcs'), - once = require('once'), - PassThrough = require('stream').PassThrough, EventEmitter = require('events'), - mkdirp = require('mkdirp'), fs = require('fs'), - path = require('path'), - async = require('async'); + GCS = require('@google-cloud/storage'), + mkdirp = require('mkdirp'), + PassThrough = require('stream').PassThrough, + path = require('path'); // test only var originalGCS;