├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── app.yaml ├── package.json ├── public ├── examples.html ├── lhicon-small.png └── lhicon.png ├── server.js └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/app.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/package.json -------------------------------------------------------------------------------- /public/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/public/examples.html -------------------------------------------------------------------------------- /public/lhicon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/public/lhicon-small.png -------------------------------------------------------------------------------- /public/lhicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/public/lhicon.png -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/server.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebidel/lighthouse-badge/HEAD/yarn.lock --------------------------------------------------------------------------------