gitextract_i2g25n_w/ ├── .dockerignore ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ └── build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── __tests__/ │ ├── argparser.test.ts │ ├── calculations.test.ts │ ├── lighthouse-badges.test.ts │ ├── main.test.ts │ └── util.test.ts ├── assets/ │ └── report/ │ └── emanuelemazzotta.com.json ├── eslint.config.js ├── package.json ├── scripts/ │ └── util.sh ├── src/ │ ├── argparser.ts │ ├── calculations.ts │ ├── clui.d.ts │ ├── index.ts │ ├── lighthouse-badges.ts │ ├── main.ts │ ├── types.ts │ └── util.ts └── tsconfig.json