├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE ├── changelog.md ├── package.json ├── readme.md ├── s3router.js ├── src ├── DropzoneS3Uploader.js └── index.js └── test ├── .env ├── mocha.opts └── todo.tests.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "founderlab" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/LICENSE -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/changelog.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/readme.md -------------------------------------------------------------------------------- /s3router.js: -------------------------------------------------------------------------------- 1 | module.exports = require('react-s3-uploader/s3router') -------------------------------------------------------------------------------- /src/DropzoneS3Uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/src/DropzoneS3Uploader.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/src/index.js -------------------------------------------------------------------------------- /test/.env: -------------------------------------------------------------------------------- 1 | NODE_ENV=test 2 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers js:babel/register 2 | --recursive 3 | -------------------------------------------------------------------------------- /test/todo.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/founderlab/react-dropzone-s3-uploader/HEAD/test/todo.tests.js --------------------------------------------------------------------------------