gitextract_dye7ihm5/ ├── .all-contributorsrc ├── .editorconfig ├── .gitignore ├── .npmrc ├── .prettierrc ├── .snyk ├── .travis.yml ├── LICENSE ├── README.md ├── __tests__/ │ ├── budgets-analyzer.test.js │ ├── helpers.test.js │ ├── reporter.test.js │ └── score-analyzer.test.js ├── bin/ │ └── cli.js ├── demo/ │ ├── .dockerignore │ ├── .npmrc │ ├── Dockerfile │ ├── Makefile │ ├── index.html │ └── package.json ├── lib/ │ ├── budgets-analyzer.js │ ├── calculate-results.js │ ├── config.js │ ├── helpers.js │ ├── lighthouse-reporter.js │ └── score-analyzer.js └── package.json