├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── index.js └── multipart_etag.js ├── package.json ├── test ├── dir1 │ ├── file1 │ ├── file2 │ ├── inner1 │ │ └── a │ └── inner2 │ │ └── b ├── dir2 │ ├── file1 │ └── inner1 │ │ └── a ├── dir3 │ ├── img │ │ └── a.jpg │ └── index.html ├── mocha.opts └── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /test 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ### 1.0.0 2 | 3 | Forked from https://github.com/andrewrk/node-s3-client -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/multipart_etag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/lib/multipart_etag.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/package.json -------------------------------------------------------------------------------- /test/dir1/file1: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/dir1/file2: -------------------------------------------------------------------------------- 1 | herp derp 2 | -------------------------------------------------------------------------------- /test/dir1/inner1/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/test/dir1/inner1/a -------------------------------------------------------------------------------- /test/dir1/inner2/b: -------------------------------------------------------------------------------- 1 | KJ. -------------------------------------------------------------------------------- /test/dir2/file1: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /test/dir2/inner1/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/test/dir2/inner1/a -------------------------------------------------------------------------------- /test/dir3/img/a.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dir3/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --timeout 40000 3 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/test/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/node-s3-client/HEAD/yarn.lock --------------------------------------------------------------------------------