├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── demo └── demo.js ├── lib ├── generate-presigned-url.js ├── helpers.js └── index.js ├── package.json └── test ├── integration-tests.js └── unit-tests.js /.eslintrc.yml: -------------------------------------------------------------------------------- 1 | extends: airbnb-base 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | *.log 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/demo/demo.js -------------------------------------------------------------------------------- /lib/generate-presigned-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/lib/generate-presigned-url.js -------------------------------------------------------------------------------- /lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/lib/helpers.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/package.json -------------------------------------------------------------------------------- /test/integration-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/test/integration-tests.js -------------------------------------------------------------------------------- /test/unit-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aesopwolf/s3-basic-auth/HEAD/test/unit-tests.js --------------------------------------------------------------------------------