├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── siteshooter.js ├── examples └── screenshot-delay │ ├── README.md │ ├── inject.js │ ├── sitemap.xml │ └── siteshooter.yml ├── index.js ├── lib ├── cli.js ├── config.js ├── crawler.js ├── defaults.json ├── log.js ├── pdf-shooter.js ├── screenshot.js ├── sitemap.js ├── siteshooter.js ├── utils.js └── website.js ├── package.json ├── share └── icons │ ├── siteshooter-white.png │ ├── siteshooter-white.svg │ ├── siteshooter-yellow.png │ └── siteshooter-yellow.svg ├── siteshooter.svg ├── siteshooter.yml └── test └── acceptance-tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/README.md -------------------------------------------------------------------------------- /bin/siteshooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/bin/siteshooter.js -------------------------------------------------------------------------------- /examples/screenshot-delay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/examples/screenshot-delay/README.md -------------------------------------------------------------------------------- /examples/screenshot-delay/inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/examples/screenshot-delay/inject.js -------------------------------------------------------------------------------- /examples/screenshot-delay/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/examples/screenshot-delay/sitemap.xml -------------------------------------------------------------------------------- /examples/screenshot-delay/siteshooter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/examples/screenshot-delay/siteshooter.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/index.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/crawler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/crawler.js -------------------------------------------------------------------------------- /lib/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/defaults.json -------------------------------------------------------------------------------- /lib/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/log.js -------------------------------------------------------------------------------- /lib/pdf-shooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/pdf-shooter.js -------------------------------------------------------------------------------- /lib/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/screenshot.js -------------------------------------------------------------------------------- /lib/sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/sitemap.js -------------------------------------------------------------------------------- /lib/siteshooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/siteshooter.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/utils.js -------------------------------------------------------------------------------- /lib/website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/lib/website.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/package.json -------------------------------------------------------------------------------- /share/icons/siteshooter-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/share/icons/siteshooter-white.png -------------------------------------------------------------------------------- /share/icons/siteshooter-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/share/icons/siteshooter-white.svg -------------------------------------------------------------------------------- /share/icons/siteshooter-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/share/icons/siteshooter-yellow.png -------------------------------------------------------------------------------- /share/icons/siteshooter-yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/share/icons/siteshooter-yellow.svg -------------------------------------------------------------------------------- /siteshooter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/siteshooter.svg -------------------------------------------------------------------------------- /siteshooter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/siteshooter.yml -------------------------------------------------------------------------------- /test/acceptance-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopsgroup-io/siteshooter/HEAD/test/acceptance-tests.js --------------------------------------------------------------------------------