├── .gitignore ├── Dockerfile ├── README.md ├── database.js ├── docs ├── docs_copy_report.jpg ├── docs_set_sources.jpg └── gds_filter.jpg ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | .DS_Store 4 | input 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/README.md -------------------------------------------------------------------------------- /database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/database.js -------------------------------------------------------------------------------- /docs/docs_copy_report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/docs/docs_copy_report.jpg -------------------------------------------------------------------------------- /docs/docs_set_sources.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/docs/docs_set_sources.jpg -------------------------------------------------------------------------------- /docs/gds_filter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/docs/gds_filter.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LocalSEOGuide/lighthouse-reporter/HEAD/package.json --------------------------------------------------------------------------------