├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── cli ├── index.babel.js ├── index.js ├── license ├── package.json ├── readme.markdown └── sample └── amazon └── output └── 1024x768.gif /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | sample 2 | -------------------------------------------------------------------------------- /cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/cli -------------------------------------------------------------------------------- /index.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/index.babel.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/package.json -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/readme.markdown -------------------------------------------------------------------------------- /sample/amazon/output/1024x768.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bevacqua/shots/HEAD/sample/amazon/output/1024x768.gif --------------------------------------------------------------------------------