├── .circleci └── config.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json ├── src ├── Date.ts ├── ErrorThrower.ts ├── Policy.ts ├── Signature.ts ├── Url.ts ├── react-aws-s3.ts └── types.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/package.json -------------------------------------------------------------------------------- /src/Date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/Date.ts -------------------------------------------------------------------------------- /src/ErrorThrower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/ErrorThrower.ts -------------------------------------------------------------------------------- /src/Policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/Policy.ts -------------------------------------------------------------------------------- /src/Signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/Signature.ts -------------------------------------------------------------------------------- /src/Url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/Url.ts -------------------------------------------------------------------------------- /src/react-aws-s3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/react-aws-s3.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Amit/react-aws-s3/HEAD/yarn.lock --------------------------------------------------------------------------------