├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── config.json ├── jest.config.js ├── lib ├── index.d.ts ├── index.js └── index.js.map ├── package.json ├── src ├── index.spec.ts ├── index.ts └── issue#16.spec.ts ├── testdata └── smiley.png └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/config.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/lib/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/package.json -------------------------------------------------------------------------------- /src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/src/index.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/issue#16.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/src/issue#16.spec.ts -------------------------------------------------------------------------------- /testdata/smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/testdata/smiley.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quobject/aws-cli-js/HEAD/tsconfig.json --------------------------------------------------------------------------------