├── .codecov.yml ├── .cz-config.js ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── Feature_request.md │ ├── Other.md │ └── bug-report.yml ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ ├── bump-nightly-version.sh │ ├── git-get-shared-history.sh │ └── jest-retry.sh └── workflows │ ├── ci.yml │ ├── cron-weekly.yml │ ├── devtools.yml │ ├── issue-assigner.yml │ ├── markdown.links.config.json │ ├── publish.yml │ ├── smoke.yml │ └── unit.yml ├── .gitignore ├── .mailmap ├── .npmignore ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── assets ├── architecture.png ├── detail-type-examples.png ├── example_audit.png ├── example_dev_tools.png ├── lh_favicon.svg ├── lh_favicon_32px.png ├── lh_favicon_76px.png ├── lighthouse-logo.svg ├── lighthouse-logo_1024px.png └── lighthouse-logo_512px.png ├── changelog.md ├── clients ├── .eslintrc.js ├── devtools-entry.js ├── devtools-report-assets.js ├── extension │ ├── images │ │ ├── lh_favicon_16x16.png │ │ ├── lh_favicon_32x32.png │ │ ├── lh_logo.svg │ │ └── lh_logo_128x128.png │ ├── manifest.json │ ├── popup.html │ ├── scripts │ │ ├── popup.js │ │ └── settings-controller.js │ └── styles │ │ └── lighthouse.css ├── lightrider │ └── lightrider-entry.js └── test │ ├── extension │ ├── popup-test.js │ └── settings-controller-test.js │ └── lightrider-entry-test.js ├── commitlint.config.js ├── docs ├── architecture.md ├── authenticated-pages.md ├── bug-labels.md ├── configuration.md ├── emulation.md ├── error-reporting.md ├── hacking-tips.md ├── headless-chrome.md ├── lantern.md ├── new-audits.md ├── performance-budgets.md ├── plugins.md ├── puppeteer.md ├── readme.md ├── recipes │ ├── auth │ │ ├── .eslintrc.js │ │ ├── README.md │ │ ├── example-lh-auth.js │ │ ├── package.json │ │ └── server │ │ │ ├── public │ │ │ ├── dashboard-unauthenticated.html │ │ │ ├── dashboard.html │ │ │ ├── home-unauthenticated.html │ │ │ ├── home.html │ │ │ └── unauthenticated.html │ │ │ └── server.js │ ├── custom-audit │ │ ├── custom-config.js │ │ ├── package.json │ │ ├── readme.md │ │ ├── searchable-audit.js │ │ └── searchable-gatherer.js │ ├── custom-gatherer-puppeteer │ │ ├── custom-audit.js │ │ ├── custom-config.js │ │ ├── custom-gatherer.js │ │ ├── package.json │ │ ├── readme.md │ │ └── test.sh │ ├── gulp │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── public │ │ │ └── index.html │ │ └── readme.md │ ├── integration-test │ │ ├── README.md │ │ ├── example-lh-auth.test.js │ │ └── package.json │ └── lighthouse-plugin-example │ │ ├── audits │ │ └── preload-as.js │ │ ├── package.json │ │ ├── plugin-recipe-screenshot.png │ │ ├── plugin.js │ │ └── readme.md ├── releasing.md ├── scoring.md ├── throttling.md ├── understanding-results.md ├── v8-perf-faq.md └── variability.md ├── eslint-local-rules.js ├── flow-report ├── .eslintrc.js ├── assets │ ├── standalone-flow-template.html │ └── styles.css ├── jest.config.js ├── src │ ├── app.tsx │ ├── sidebar │ │ ├── flow.tsx │ │ └── sidebar.tsx │ └── util.ts ├── standalone-flow.tsx ├── test │ ├── App-test.tsx │ ├── setup │ │ └── global-setup.ts │ ├── sidebar │ │ ├── flow-test.tsx │ │ └── sidebar-test.tsx │ └── util-test.tsx ├── tsconfig.json └── types │ └── flow-report.d.ts ├── jest.config.js ├── lighthouse-cli ├── bin.js ├── cli-flags.js ├── commands │ ├── commands.js │ ├── list-audits.js │ └── list-trace-categories.js ├── index.js ├── printer.js ├── run.js ├── sentry-prompt.js └── test │ ├── cli │ ├── __snapshots__ │ │ └── index-test.js.snap │ ├── bin-test.js │ ├── cli-flags-test.js │ ├── index-test.js │ ├── printer-test.js │ └── run-test.js │ ├── fixtures │ ├── a11y │ │ └── a11y_tester.html │ ├── badssl-iframe.html │ ├── byte-efficiency │ │ ├── bundle.js │ │ ├── bundle.js.map │ │ ├── gzip.html │ │ ├── large.svg │ │ ├── lighthouse-1024x680.jpg │ │ ├── lighthouse-2048x1356.webp │ │ ├── lighthouse-320x212-poor.jpg │ │ ├── lighthouse-480x320.jpg │ │ ├── lighthouse-480x320.webp │ │ ├── lighthouse-unoptimized.jpg │ │ ├── script.js │ │ └── tester.html │ ├── cli-flags-path.json │ ├── csp.html │ ├── debugger.html │ ├── delayed-fcp.html │ ├── delayed-lcp.html │ ├── dobetterweb │ │ ├── dbw_disabled.css │ │ ├── dbw_tester.css │ │ ├── dbw_tester.html │ │ ├── dbw_tester.js │ │ ├── empty.css │ │ ├── empty_module.js │ │ ├── lighthouse-480x318.jpg │ │ ├── lighthouse-rotating.gif │ │ └── third_party │ │ │ └── aggressive-promise-polyfill.js │ ├── extra-headers │ │ ├── invalid.txt │ │ └── valid.json │ ├── form.html │ ├── infinite-loop.html │ ├── js-redirect.html │ ├── lantern-data.json │ ├── launcher-icon-100x100.png │ ├── launcher-icon-4x.png │ ├── legacy-javascript.html │ ├── legacy-javascript.js │ ├── manifest.json │ ├── offline-ready-sw.js │ ├── offline-ready.html │ ├── online-only.html │ ├── oopif.html │ ├── perf │ │ ├── animations.html │ │ ├── cors-fonts.css │ │ ├── debug.html │ │ ├── delayed-element.js │ │ ├── fonts.html │ │ ├── frame-metrics-inner.html │ │ ├── frame-metrics.html │ │ ├── level-2.js │ │ ├── level-3.js │ │ ├── lobster-two-v10-latin-700.woff2 │ │ ├── lobster-v20-latin-regular.woff2 │ │ ├── perf-budgets │ │ │ ├── big-script.js │ │ │ └── load-things.html │ │ ├── preload_style.css │ │ ├── preload_tester.js │ │ ├── third-party.html │ │ ├── trace-elements.html │ │ └── unsized-images.html │ ├── preload.html │ ├── redirects-final.html │ ├── ric-shim.html │ ├── screenshot.gif │ ├── screenshot.html │ ├── seo │ │ ├── seo-failure-cases.html │ │ ├── seo-tap-targets.html │ │ ├── seo-tester-styles.css │ │ └── seo-tester.html │ ├── source-map │ │ ├── script.js.map │ │ └── source-map-tester.html │ ├── static-server.js │ ├── tricky-main-thread-consumer.js │ ├── tricky-main-thread-library.js │ ├── tricky-main-thread.html │ ├── tricky-tti-late-fcp.html │ └── tricky-tti.html │ ├── smokehouse │ ├── frontends │ │ ├── back-compat-util.js │ │ ├── lib.js │ │ ├── node.js │ │ └── smokehouse-bin.js │ ├── lib │ │ ├── child-process-error.js │ │ ├── concurrent-mapper.js │ │ └── local-console.js │ ├── lighthouse-runners │ │ ├── bundle.js │ │ └── cli.js │ ├── readme.md │ ├── report-assert.js │ ├── smokehouse.js │ └── test-definitions │ │ ├── a11y │ │ ├── a11y-config.js │ │ └── expectations.js │ │ ├── byte-efficiency │ │ ├── byte-config.js │ │ └── expectations.js │ │ ├── core-tests.js │ │ ├── csp │ │ ├── csp-config.js │ │ └── csp-expectations.js │ │ ├── dobetterweb │ │ ├── dbw-config.js │ │ └── dbw-expectations.js │ │ ├── errors │ │ ├── error-config.js │ │ └── error-expectations.js │ │ ├── forms │ │ ├── form-config.js │ │ └── form-expectations.js │ │ ├── issues │ │ └── mixed-content.js │ │ ├── lantern │ │ ├── lantern-config.js │ │ └── lantern-expectations.js │ │ ├── legacy-javascript │ │ ├── expectations.js │ │ └── legacy-javascript-config.js │ │ ├── offline-local │ │ ├── offline-config.js │ │ └── offline-expectations.js │ │ ├── oopif │ │ ├── oopif-config.js │ │ └── oopif-expectations.js │ │ ├── perf-diagnostics │ │ ├── expectations.js │ │ └── perf-diagnostics-config.js │ │ ├── perf │ │ ├── expectations.js │ │ └── perf-config.js │ │ ├── pwa │ │ ├── pwa-config.js │ │ ├── pwa-expectations-details.js │ │ ├── pwa-expectations.js │ │ ├── pwa2-expectations.js │ │ └── pwa3-expectations.js │ │ ├── redirects │ │ ├── expectations.js │ │ └── redirects-config.js │ │ ├── screenshot │ │ ├── expectations.js │ │ └── screenshot-config.js │ │ ├── seo │ │ ├── expectations.js │ │ └── seo-config.js │ │ ├── source-maps │ │ ├── expectations.js │ │ └── source-maps-config.js │ │ └── tricky-metrics │ │ ├── expectations.js │ │ └── no-throttling-config.js │ └── static-server-test.js ├── lighthouse-core ├── audits │ ├── accessibility │ │ ├── accesskeys.js │ │ ├── aria-allowed-attr.js │ │ ├── aria-command-name.js │ │ ├── aria-hidden-body.js │ │ ├── aria-hidden-focus.js │ │ ├── aria-input-field-name.js │ │ ├── aria-meter-name.js │ │ ├── aria-progressbar-name.js │ │ ├── aria-required-attr.js │ │ ├── aria-required-children.js │ │ ├── aria-required-parent.js │ │ ├── aria-roles.js │ │ ├── aria-toggle-field-name.js │ │ ├── aria-tooltip-name.js │ │ ├── aria-treeitem-name.js │ │ ├── aria-valid-attr-value.js │ │ ├── aria-valid-attr.js │ │ ├── axe-audit.js │ │ ├── button-name.js │ │ ├── bypass.js │ │ ├── color-contrast.js │ │ ├── definition-list.js │ │ ├── dlitem.js │ │ ├── document-title.js │ │ ├── duplicate-id-active.js │ │ ├── duplicate-id-aria.js │ │ ├── form-field-multiple-labels.js │ │ ├── frame-title.js │ │ ├── heading-order.js │ │ ├── html-has-lang.js │ │ ├── html-lang-valid.js │ │ ├── image-alt.js │ │ ├── input-image-alt.js │ │ ├── label.js │ │ ├── link-name.js │ │ ├── list.js │ │ ├── listitem.js │ │ ├── manual │ │ │ ├── custom-controls-labels.js │ │ │ ├── custom-controls-roles.js │ │ │ ├── focus-traps.js │ │ │ ├── focusable-controls.js │ │ │ ├── interactive-element-affordance.js │ │ │ ├── logical-tab-order.js │ │ │ ├── managed-focus.js │ │ │ ├── offscreen-content-hidden.js │ │ │ ├── use-landmarks.js │ │ │ └── visual-order-follows-dom.js │ │ ├── meta-refresh.js │ │ ├── meta-viewport.js │ │ ├── object-alt.js │ │ ├── tabindex.js │ │ ├── td-headers-attr.js │ │ ├── th-has-data-cells.js │ │ ├── valid-lang.js │ │ └── video-caption.js │ ├── apple-touch-icon.js │ ├── audit.js │ ├── autocomplete.js │ ├── bootup-time.js │ ├── byte-efficiency │ │ ├── byte-efficiency-audit.js │ │ ├── duplicated-javascript.js │ │ ├── efficient-animated-content.js │ │ ├── legacy-javascript.js │ │ ├── modern-image-formats.js │ │ ├── offscreen-images.js │ │ ├── polyfill-graph-data.json │ │ ├── render-blocking-resources.js │ │ ├── total-byte-weight.js │ │ ├── unminified-css.js │ │ ├── unminified-javascript.js │ │ ├── unused-css-rules.js │ │ ├── unused-javascript.js │ │ ├── uses-long-cache-ttl.js │ │ ├── uses-optimized-images.js │ │ ├── uses-responsive-images-snapshot.js │ │ ├── uses-responsive-images.js │ │ └── uses-text-compression.js │ ├── content-width.js │ ├── critical-request-chains.js │ ├── csp-xss.js │ ├── deprecations.js │ ├── diagnostics.js │ ├── dobetterweb │ │ ├── appcache-manifest.js │ │ ├── charset.js │ │ ├── doctype.js │ │ ├── dom-size.js │ │ ├── external-anchors-use-rel-noopener.js │ │ ├── geolocation-on-start.js │ │ ├── inspector-issues.js │ │ ├── js-libraries.js │ │ ├── no-document-write.js │ │ ├── no-vulnerable-libraries.js │ │ ├── notification-on-start.js │ │ ├── password-inputs-can-be-pasted-into.js │ │ ├── uses-http2.js │ │ └── uses-passive-event-listeners.js │ ├── errors-in-console.js │ ├── final-screenshot.js │ ├── font-display.js │ ├── full-page-screenshot.js │ ├── image-aspect-ratio.js │ ├── image-size-responsive.js │ ├── installable-manifest.js │ ├── is-on-https.js │ ├── largest-contentful-paint-element.js │ ├── layout-shift-elements.js │ ├── lcp-lazy-loaded.js │ ├── long-tasks.js │ ├── main-thread-tasks.js │ ├── mainthread-work-breakdown.js │ ├── manual │ │ ├── manual-audit.js │ │ ├── pwa-cross-browser.js │ │ ├── pwa-each-page-has-url.js │ │ └── pwa-page-transitions.js │ ├── maskable-icon.js │ ├── metrics.js │ ├── metrics │ │ ├── cumulative-layout-shift.js │ │ ├── first-contentful-paint-3g.js │ │ ├── first-contentful-paint.js │ │ ├── first-meaningful-paint.js │ │ ├── interactive.js │ │ ├── largest-contentful-paint.js │ │ ├── max-potential-fid.js │ │ ├── speed-index.js │ │ └── total-blocking-time.js │ ├── multi-check-audit.js │ ├── network-requests.js │ ├── network-rtt.js │ ├── network-server-latency.js │ ├── no-unload-listeners.js │ ├── non-composited-animations.js │ ├── performance-budget.js │ ├── predictive-perf.js │ ├── preload-fonts.js │ ├── preload-lcp-image.js │ ├── redirects-http.js │ ├── redirects.js │ ├── resource-summary.js │ ├── screenshot-thumbnails.js │ ├── script-treemap-data.js │ ├── seo │ │ ├── canonical.js │ │ ├── crawlable-anchors.js │ │ ├── font-size.js │ │ ├── hreflang.js │ │ ├── http-status-code.js │ │ ├── is-crawlable.js │ │ ├── link-text.js │ │ ├── manual │ │ │ └── structured-data.js │ │ ├── meta-description.js │ │ ├── plugins.js │ │ ├── robots-txt.js │ │ └── tap-targets.js │ ├── server-response-time.js │ ├── service-worker.js │ ├── splash-screen.js │ ├── themed-omnibox.js │ ├── third-party-facades.js │ ├── third-party-summary.js │ ├── timing-budget.js │ ├── unsized-images.js │ ├── user-timings.js │ ├── uses-rel-preconnect.js │ ├── uses-rel-preload.js │ ├── valid-source-maps.js │ ├── viewport.js │ └── violation-audit.js ├── computed │ ├── computed-artifact.js │ ├── critical-request-chains.js │ ├── image-records.js │ ├── js-bundles.js │ ├── load-simulator.js │ ├── main-resource.js │ ├── main-thread-tasks.js │ ├── manifest-values.js │ ├── metrics │ │ ├── cumulative-layout-shift.js │ │ ├── first-contentful-paint-all-frames.js │ │ ├── first-contentful-paint.js │ │ ├── first-meaningful-paint.js │ │ ├── interactive.js │ │ ├── lantern-first-contentful-paint.js │ │ ├── lantern-first-meaningful-paint.js │ │ ├── lantern-interactive.js │ │ ├── lantern-largest-contentful-paint.js │ │ ├── lantern-max-potential-fid.js │ │ ├── lantern-metric.js │ │ ├── lantern-speed-index.js │ │ ├── lantern-total-blocking-time.js │ │ ├── largest-contentful-paint-all-frames.js │ │ ├── largest-contentful-paint.js │ │ ├── max-potential-fid.js │ │ ├── metric.js │ │ ├── navigation-metric.js │ │ ├── speed-index.js │ │ ├── timing-summary.js │ │ └── total-blocking-time.js │ ├── module-duplication.js │ ├── network-analysis.js │ ├── network-records.js │ ├── page-dependency-graph.js │ ├── processed-navigation.js │ ├── processed-trace.js │ ├── resource-summary.js │ ├── screenshots.js │ ├── speedline.js │ ├── trace-of-tab.js │ ├── unused-css.js │ ├── unused-javascript-summary.js │ ├── user-timings.js │ └── viewport-meta.js ├── config │ ├── budget.js │ ├── config-helpers.js │ ├── config-plugin.js │ ├── config.js │ ├── constants.js │ ├── default-config.js │ ├── desktop-config.js │ ├── experimental-config.js │ ├── full-config.js │ ├── lr-desktop-config.js │ ├── lr-mobile-config.js │ ├── metrics-to-audits.js │ └── perf-config.js ├── fraggle-rock │ ├── api.js │ ├── config │ │ ├── config.js │ │ ├── default-config.js │ │ ├── filters.js │ │ └── validation.js │ └── gather │ │ ├── base-artifacts.js │ │ ├── base-gatherer.js │ │ ├── driver.js │ │ ├── navigation-runner.js │ │ ├── runner-helpers.js │ │ ├── session.js │ │ ├── snapshot-runner.js │ │ └── timespan-runner.js ├── gather │ ├── connections │ │ ├── connection.js │ │ ├── cri.js │ │ └── raw.js │ ├── devtools-log.js │ ├── driver.js │ ├── driver │ │ ├── dom.js │ │ ├── environment.js │ │ ├── execution-context.js │ │ ├── navigation.js │ │ ├── network-monitor.js │ │ ├── network.js │ │ ├── prepare.js │ │ ├── service-workers.js │ │ ├── storage.js │ │ └── wait-for-condition.js │ ├── fetcher.js │ ├── gather-runner.js │ └── gatherers │ │ ├── accessibility.js │ │ ├── anchor-elements.js │ │ ├── cache-contents.js │ │ ├── console-messages.js │ │ ├── css-usage.js │ │ ├── devtools-log-compat.js │ │ ├── devtools-log.js │ │ ├── dobetterweb │ │ ├── appcache.js │ │ ├── doctype.js │ │ ├── domstats.js │ │ ├── optimized-images.js │ │ ├── password-inputs-with-prevented-paste.js │ │ ├── response-compression.js │ │ └── tags-blocking-first-paint.js │ │ ├── form-elements.js │ │ ├── full-page-screenshot.js │ │ ├── gather-context.js │ │ ├── gatherer.js │ │ ├── global-listeners.js │ │ ├── host-form-factor.js │ │ ├── host-user-agent.js │ │ ├── http-redirect.js │ │ ├── iframe-elements.js │ │ ├── image-elements.js │ │ ├── inspector-issues.js │ │ ├── installability-errors.js │ │ ├── js-usage.js │ │ ├── link-elements.js │ │ ├── main-document-content.js │ │ ├── meta-elements.js │ │ ├── network-user-agent.js │ │ ├── script-elements.js │ │ ├── seo │ │ ├── embedded-content.js │ │ ├── font-size.js │ │ ├── robots-txt.js │ │ └── tap-targets.js │ │ ├── service-worker.js │ │ ├── source-maps.js │ │ ├── stacks.js │ │ ├── trace-compat.js │ │ ├── trace-elements.js │ │ ├── trace.js │ │ ├── viewport-dimensions.js │ │ └── web-app-manifest.js ├── index.js ├── lib │ ├── arbitrary-equality-map.js │ ├── asset-saver.js │ ├── axe.js │ ├── cdt │ │ ├── Common.js │ │ ├── SDK.js │ │ └── generated │ │ │ └── SourceMap.js │ ├── csp-evaluator.js │ ├── dependency-graph │ │ ├── base-node.js │ │ ├── cpu-node.js │ │ ├── network-node.js │ │ └── simulator │ │ │ ├── connection-pool.js │ │ │ ├── dns-cache.js │ │ │ ├── network-analyzer.js │ │ │ ├── simulator-timing-map.js │ │ │ ├── simulator.js │ │ │ └── tcp-connection.js │ ├── emulation.js │ ├── i18n │ │ ├── README.md │ │ ├── i18n.js │ │ ├── locales.js │ │ ├── locales │ │ │ ├── ar-XB.json │ │ │ ├── ar.json │ │ │ ├── bg.json │ │ │ ├── ca.json │ │ │ ├── cs.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en-GB.json │ │ │ ├── en-US.json │ │ │ ├── en-XA.json │ │ │ ├── en-XL.json │ │ │ ├── es-419.json │ │ │ ├── es.json │ │ │ ├── fi.json │ │ │ ├── fil.json │ │ │ ├── fr.json │ │ │ ├── he.json │ │ │ ├── hi.json │ │ │ ├── hr.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── lt.json │ │ │ ├── lv.json │ │ │ ├── nl.json │ │ │ ├── no.json │ │ │ ├── pl.json │ │ │ ├── pt-PT.json │ │ │ ├── pt.json │ │ │ ├── ro.json │ │ │ ├── ru.json │ │ │ ├── sk.json │ │ │ ├── sl.json │ │ │ ├── sr-Latn.json │ │ │ ├── sr.json │ │ │ ├── sv.json │ │ │ ├── ta.json │ │ │ ├── te.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ ├── zh-HK.json │ │ │ ├── zh-TW.json │ │ │ └── zh.json │ │ └── swap-locale.js │ ├── icons.js │ ├── lantern-trace-saver.js │ ├── lh-env.js │ ├── lh-error.js │ ├── lh-trace-processor.js │ ├── manifest-parser.js │ ├── median-run.js │ ├── minification-estimator.js │ ├── minify-devtoolslog.js │ ├── minify-trace.js │ ├── navigation-error.js │ ├── network-recorder.js │ ├── network-request.js │ ├── page-functions.js │ ├── proto-preprocessor.js │ ├── rect-helpers.js │ ├── sd-validation │ │ ├── assets │ │ │ ├── jsonldcontext.json │ │ │ └── schema-tree.json │ │ ├── helpers │ │ │ └── walk-object.js │ │ ├── json-expander.js │ │ ├── json-linter.js │ │ ├── jsonld-keyword-validator.js │ │ ├── line-number-from-jsonld-path.js │ │ ├── schema-validator.js │ │ ├── scripts │ │ │ ├── download-jsonldcontext.js │ │ │ └── generate-schema-tree.js │ │ └── sd-validation.js │ ├── sentry.js │ ├── stack-packs.js │ ├── statistics.js │ ├── tappable-rects.js │ ├── third-party-web.js │ ├── timing-trace-saver.js │ ├── tracehouse │ │ ├── cpu-profile-model.js │ │ ├── main-thread-tasks.js │ │ ├── task-groups.js │ │ └── trace-processor.js │ ├── traces │ │ └── pwmetrics-events.js │ ├── type-verifiers.js │ └── url-shim.js ├── runner.js ├── scoring.js ├── scripts │ ├── assert-golden-lhr-unchanged.sh │ ├── benchmark-plus-extras.js │ ├── benchmark.js │ ├── build-test-flow-report.js │ ├── c8.sh │ ├── cleanup-LHR-for-diff.js │ ├── cleanup-vuln-snapshot.js │ ├── compare-runs.js │ ├── copy-util-commonjs.sh │ ├── dogfood-lhci.sh │ ├── download-chrome.sh │ ├── gcp-collection │ │ ├── README.md │ │ ├── analyze-lhr-data.js │ │ ├── extract-data.sh │ │ ├── fleet-create-directories.js │ │ ├── fleet-create.sh │ │ ├── fleet-destroy.sh │ │ ├── fleet-status.sh │ │ ├── gcp-run-on-url.sh │ │ ├── gcp-run.sh │ │ ├── gcp-setup.sh │ │ ├── run.sh │ │ └── urls.txt │ ├── generate-timing-trace.js │ ├── git3po-rules │ │ ├── add-needs-priority.yaml │ │ ├── cannot-attach-to-this-target.yaml │ │ ├── close-variability-issues.yaml │ │ ├── failed-document-request.yaml │ │ ├── failed-to-construct-url.yaml │ │ ├── invalid-url.yaml │ │ ├── land-when-green.yaml │ │ ├── lock-resolved.yaml │ │ ├── multiple-tabs.yaml │ │ ├── no-fcp.yaml │ │ ├── no-tabid-set-for-sendcommand.yaml │ │ ├── page-hung.yaml │ │ ├── parsing-problem.yaml │ │ ├── pr-assignee.yaml │ │ ├── protocol-timeout.yaml │ │ ├── read-failed.yaml │ │ ├── remove-needs-priority.yaml │ │ ├── resolve-current-tab.yaml │ │ ├── tracing-start-wasnt-found.yaml │ │ ├── tracing.yaml │ │ └── url-runner.yaml │ ├── github-actions-commit-range.sh │ ├── i18n │ │ ├── assert-strings-collected.sh │ │ ├── bake-ctc-to-lhl.js │ │ ├── collect-strings.js │ │ ├── count-translated.js │ │ └── prune-obsolete-lhl-messages.js │ ├── internal-analysis │ │ ├── analyze-issues.js │ │ └── download-issues.js │ ├── json-size.js │ ├── lantern │ │ ├── assert-baseline-lantern-values-unchanged.js │ │ ├── collect │ │ │ ├── README.md │ │ │ ├── collect.js │ │ │ ├── common.js │ │ │ ├── gcp-create-and-run.sh │ │ │ ├── gcp-run.sh │ │ │ ├── gcp-setup.sh │ │ │ ├── golden.js │ │ │ └── urls.js │ │ ├── constants.js │ │ ├── debug-url.js │ │ ├── download-traces.sh │ │ ├── minify-devtoolslog.js │ │ ├── minify-trace.js │ │ ├── print-correlations.js │ │ ├── run-on-all-assets.js │ │ ├── run-once.js │ │ └── update-baseline-lantern-values.js │ ├── legacy-javascript │ │ ├── README.md │ │ ├── create-polyfill-size-estimation.js │ │ ├── examine-latest-run.js │ │ ├── hash.js │ │ ├── main.js │ │ ├── package.json │ │ ├── run.js │ │ ├── summary-signals-nomaps.json │ │ ├── summary-signals.json │ │ ├── summary-sizes.txt │ │ └── yarn.lock │ ├── manual-chrome-launcher.js │ ├── open-devtools.sh │ ├── pptr-run-devtools.js │ ├── print-a11y-scoring.js │ ├── print-contributors.js │ ├── release │ │ ├── bump-versions.js │ │ ├── prepare-commit.sh │ │ ├── prepare-package.sh │ │ ├── prepare-pristine.sh │ │ └── test.sh │ ├── roll-to-devtools.sh │ ├── run-git3po.sh │ ├── save-latest-run.sh │ ├── test-lantern.sh │ ├── test-legacy-javascript.sh │ ├── update-flow-fixtures.js │ ├── update-report-fixtures.js │ └── update-vuln-snapshot.sh ├── test │ ├── .prettierrc │ ├── audits │ │ ├── __snapshots__ │ │ │ ├── metrics-test.js.snap │ │ │ ├── predictive-perf-test.js.snap │ │ │ └── script-treemap-data-test.js.snap │ │ ├── accessibility │ │ │ ├── aria-allowed-attr-test.js │ │ │ ├── aria-required-attr-test.js │ │ │ ├── aria-required-children-test.js │ │ │ ├── aria-required-parent-test.js │ │ │ ├── aria-roles-test.js │ │ │ ├── aria-valid-attr-test.js │ │ │ ├── aria-valid-attr-value-test.js │ │ │ ├── axe-audit-test.js │ │ │ ├── button-name-test.js │ │ │ ├── bypass-test.js │ │ │ ├── color-contrast-test.js │ │ │ ├── definition-list-test.js │ │ │ ├── dlitem-test.js │ │ │ ├── document-title-test.js │ │ │ ├── frame-title-test.js │ │ │ ├── html-has-lang-test.js │ │ │ ├── html-lang-valid-test.js │ │ │ ├── image-alt-test.js │ │ │ ├── input-image-alt-test.js │ │ │ ├── label-test.js │ │ │ ├── link-name-test.js │ │ │ ├── list-test.js │ │ │ ├── listitem-test.js │ │ │ ├── meta-refresh-test.js │ │ │ ├── meta-viewport-test.js │ │ │ ├── object-alt-test.js │ │ │ ├── tabindex-test.js │ │ │ ├── td-headers-attr-test.js │ │ │ ├── th-has-data-cells-test.js │ │ │ ├── valid-lang-test.js │ │ │ └── video-caption-test.js │ │ ├── apple-touch-icon-test.js │ │ ├── audit-test.js │ │ ├── autocomplete-test.js │ │ ├── bootup-time-test.js │ │ ├── byte-efficiency │ │ │ ├── byte-efficiency-audit-test.js │ │ │ ├── duplicated-javascript-test.js │ │ │ ├── efficient-animated-content-test.js │ │ │ ├── legacy-javascript-test.js │ │ │ ├── modern-image-formats-test.js │ │ │ ├── offscreen-images-test.js │ │ │ ├── render-blocking-resources-test.js │ │ │ ├── total-byte-weight-test.js │ │ │ ├── unminified-css-test.js │ │ │ ├── unminified-javascript-test.js │ │ │ ├── unused-css-rules-test.js │ │ │ ├── unused-javascript-test.js │ │ │ ├── uses-long-cache-ttl-test.js │ │ │ ├── uses-optimized-images-test.js │ │ │ ├── uses-responsive-images-snapshot-test.js │ │ │ ├── uses-responsive-images-test.js │ │ │ └── uses-text-compression-test.js │ │ ├── content-width-test.js │ │ ├── critical-request-chains-test.js │ │ ├── csp-xss-test.js │ │ ├── deprecations-test.js │ │ ├── diagnostics-test.js │ │ ├── dobetterweb │ │ │ ├── appcache-manifest-test.js │ │ │ ├── charset-test.js │ │ │ ├── doctype-test.js │ │ │ ├── dom-size-test.js │ │ │ ├── external-anchors-use-rel-noopener-test.js │ │ │ ├── geolocation-on-start-test.js │ │ │ ├── inspector-issues-test.js │ │ │ ├── js-libraries-test.js │ │ │ ├── no-document-write-test.js │ │ │ ├── no-vulnerable-libraries-test.js │ │ │ ├── notification-on-start-test.js │ │ │ ├── password-inputs-can-be-pasted-into-test.js │ │ │ ├── uses-http2-test.js │ │ │ └── uses-passive-event-listeners-test.js │ │ ├── errors-in-console-test.js │ │ ├── final-screenshot-test.js │ │ ├── font-display-test.js │ │ ├── image-aspect-ratio-test.js │ │ ├── image-size-responsive-test.js │ │ ├── installable-manifest-test.js │ │ ├── is-on-https-test.js │ │ ├── largest-contentful-paint-element-test.js │ │ ├── layout-shift-elements-test.js │ │ ├── lcp-lazy-loaded-test.js │ │ ├── long-tasks-test.js │ │ ├── main-thread-tasks-test.js │ │ ├── mainthread-work-breakdown-test.js │ │ ├── manual-audit-test.js │ │ ├── maskable-icon-test.js │ │ ├── metrics-test.js │ │ ├── metrics │ │ │ ├── __snapshots__ │ │ │ │ └── first-meaningful-paint-test.js.snap │ │ │ ├── cumulative-layout-shift-test.js │ │ │ ├── first-contentful-paint-3g-test.js │ │ │ ├── first-contentful-paint-test.js │ │ │ ├── first-meaningful-paint-test.js │ │ │ ├── interactive-test.js │ │ │ ├── largest-contentful-paint-test.js │ │ │ ├── speed-index-test.js │ │ │ └── total-blocking-time-test.js │ │ ├── network-requests-test.js │ │ ├── network-rtt-test.js │ │ ├── network-server-latency-test.js │ │ ├── no-unload-listeners-test.js │ │ ├── non-composited-animations-test.js │ │ ├── performance-budget-test.js │ │ ├── predictive-perf-test.js │ │ ├── preload-fonts-test.js │ │ ├── preload-lcp-image-test.js │ │ ├── redirects-http-test.js │ │ ├── redirects-test.js │ │ ├── resource-summary-test.js │ │ ├── screenshot-thumbnails-test.js │ │ ├── script-treemap-data-test.js │ │ ├── seo │ │ │ ├── canonical-test.js │ │ │ ├── crawlable-anchors-test.js │ │ │ ├── font-size-test.js │ │ │ ├── hreflang-test.js │ │ │ ├── http-status-code-test.js │ │ │ ├── is-crawlable-test.js │ │ │ ├── link-text-test.js │ │ │ ├── meta-description-test.js │ │ │ ├── plugins-test.js │ │ │ ├── robots-txt-test.js │ │ │ └── tap-targets-test.js │ │ ├── server-response-time-test.js │ │ ├── service-worker-test.js │ │ ├── splash-screen-test.js │ │ ├── themed-omnibox-test.js │ │ ├── third-party-facades-test.js │ │ ├── third-party-summary-test.js │ │ ├── timing-budget-test.js │ │ ├── unsized-images-test.js │ │ ├── user-timing-test.js │ │ ├── uses-rel-preconnect-test.js │ │ ├── uses-rel-preload-test.js │ │ ├── valid-source-maps-test.js │ │ └── viewport-test.js │ ├── chromium-web-tests │ │ ├── README.md │ │ ├── blink-tools.patch │ │ ├── download-blink-tools.sh │ │ ├── download-content-shell.sh │ │ ├── download-depot-tools.sh │ │ ├── download-devtools.sh │ │ ├── roll-devtools.sh │ │ ├── run-web-tests.sh │ │ ├── test-locally.sh │ │ └── web-test-server.sh │ ├── computed │ │ ├── computed-artifact-test.js │ │ ├── critical-request-chains-test.js │ │ ├── image-records-test.js │ │ ├── js-bundles-test.js │ │ ├── load-simulator-test.js │ │ ├── main-resource-test.js │ │ ├── main-thread-tasks-test.js │ │ ├── manifest-values-test.js │ │ ├── metrics │ │ │ ├── __snapshots__ │ │ │ │ ├── first-contentful-paint-test.js.snap │ │ │ │ ├── first-meaningful-paint-test.js.snap │ │ │ │ ├── interactive-test.js.snap │ │ │ │ ├── lantern-first-contentful-paint-test.js.snap │ │ │ │ ├── lantern-first-meaningful-paint-test.js.snap │ │ │ │ ├── lantern-interactive-test.js.snap │ │ │ │ └── max-potential-fid-test.js.snap │ │ │ ├── cumulative-layout-shift-test.js │ │ │ ├── first-contentful-paint-all-frames-test.js │ │ │ ├── first-contentful-paint-test.js │ │ │ ├── first-meaningful-paint-test.js │ │ │ ├── interactive-test.js │ │ │ ├── lantern-first-contentful-paint-test.js │ │ │ ├── lantern-first-meaningful-paint-test.js │ │ │ ├── lantern-interactive-test.js │ │ │ ├── lantern-largest-contentful-paint-test.js │ │ │ ├── lantern-speed-index-test.js │ │ │ ├── largest-contentful-paint-all-frames-test.js │ │ │ ├── largest-contentful-paint-test.js │ │ │ ├── max-potential-fid-test.js │ │ │ ├── speed-index-test.js │ │ │ ├── timing-summary-test.js │ │ │ └── total-blocking-time-test.js │ │ ├── module-duplication-test.js │ │ ├── network-analysis-test.js │ │ ├── page-dependency-graph-test.js │ │ ├── processed-navigation-test.js │ │ ├── processed-trace-test.js │ │ ├── resource-summary-test.js │ │ ├── screenshots-test.js │ │ ├── speedline-test.js │ │ ├── trace-of-tab-test.js │ │ ├── unused-css-test.js │ │ ├── unused-javascript-summary-test.js │ │ └── viewport-meta-test.js │ ├── config │ │ ├── __snapshots__ │ │ │ └── config-plugin-test.js.snap │ │ ├── budget-test.js │ │ ├── config-helpers-test.js │ │ ├── config-plugin-test.js │ │ ├── config-test.js │ │ └── default-config-test.js │ ├── create-test-trace.js │ ├── fixtures │ │ ├── artifacts │ │ │ ├── alphabet-artifacts │ │ │ │ └── artifacts.json │ │ │ ├── empty-artifacts │ │ │ │ └── artifacts.json │ │ │ └── perflog │ │ │ │ ├── artifacts.json │ │ │ │ ├── defaultPass.devtoolslog.json │ │ │ │ └── defaultPass.trace.json │ │ ├── config-plugins │ │ │ ├── lighthouse-plugin-no-category │ │ │ │ ├── package.json │ │ │ │ └── plugin-no-category.js │ │ │ ├── lighthouse-plugin-no-groups │ │ │ │ ├── package.json │ │ │ │ └── plugin-no-groups.js │ │ │ └── lighthouse-plugin-simple │ │ │ │ ├── package.json │ │ │ │ └── plugin-simple.js │ │ ├── config │ │ │ ├── config │ │ │ │ ├── config.js │ │ │ │ └── node_modules │ │ │ │ │ └── plugin-in-config-directory │ │ │ │ │ ├── package.json │ │ │ │ │ └── plugin-in-config-directory.js │ │ │ ├── lighthouse-plugin-config-helper │ │ │ │ ├── package.json │ │ │ │ └── plugin-config-helper.js │ │ │ └── node_modules │ │ │ │ └── plugin-in-working-directory │ │ │ │ ├── package.json │ │ │ │ └── plugin-in-working-directory.js │ │ ├── fraggle-rock │ │ │ ├── navigation-basic │ │ │ │ └── index.html │ │ │ ├── reports │ │ │ │ └── sample-lhrs.json │ │ │ └── snapshot-basic │ │ │ │ └── onclick.html │ │ ├── invalid-audits │ │ │ ├── missing-audit.js │ │ │ ├── missing-description.js │ │ │ ├── missing-generate-audit-result.js │ │ │ ├── missing-id.js │ │ │ ├── missing-meta.js │ │ │ ├── missing-required-artifacts.js │ │ │ ├── missing-title.js │ │ │ └── require-error.js │ │ ├── invalid-gatherers │ │ │ ├── missing-after-pass.js │ │ │ ├── missing-before-pass.js │ │ │ ├── missing-pass.js │ │ │ └── require-error.js │ │ ├── lantern-baseline-accuracy.json │ │ ├── lantern-baseline-computed-values.json │ │ ├── lr.devtoolslog.json │ │ ├── manifest-bom.json │ │ ├── manifest-dirty-jpg.json │ │ ├── manifest-no-maskable-icon.json │ │ ├── manifest.json │ │ ├── networkRecords-mix.json │ │ ├── page-level-event-listeners.json │ │ ├── prefetched-script.devtoolslog.json │ │ ├── redirects-from-script.devtoolslog.json │ │ ├── simple-budget.json │ │ ├── source-maps │ │ │ ├── coursehero-bundle-1.js │ │ │ ├── coursehero-bundle-1.js.map │ │ │ ├── coursehero-bundle-2.js │ │ │ ├── coursehero-bundle-2.js.map │ │ │ ├── foo.min.js │ │ │ ├── foo.min.js.map │ │ │ ├── squoosh.js │ │ │ ├── squoosh.js.map │ │ │ └── squoosh.usage.json │ │ ├── traces │ │ │ ├── airhorner_no_fcp.json │ │ │ ├── amp-m86.devtoolslog.json │ │ │ ├── amp-m86.trace.json │ │ │ ├── animation.json │ │ │ ├── backgrounded-tab-missing-paints.json │ │ │ ├── bad-nav-start-ts.json │ │ │ ├── cpu-profiler-m86.trace.json │ │ │ ├── cutoff-load-m83.devtoolslog.json │ │ │ ├── cutoff-load-m83.trace.json │ │ │ ├── devtools-homepage-w-screenshots-trace.json │ │ │ ├── frame-metrics-m89.devtools.log.json │ │ │ ├── frame-metrics-m89.json │ │ │ ├── frame-metrics-m90.devtools.log.json │ │ │ ├── frame-metrics-m90.json │ │ │ ├── iframe-m79.devtoolslog.json │ │ │ ├── iframe-m79.trace.json │ │ │ ├── jumpy-cls-m90.devtoolslog.json │ │ │ ├── jumpy-cls-m90.json │ │ │ ├── lcp-m78.devtools.log.json │ │ │ ├── lcp-m78.json │ │ │ ├── load.json │ │ │ ├── network-records.json │ │ │ ├── no-tracingstarted-m74.json │ │ │ ├── no_fmp_event.json │ │ │ ├── no_navstart_event.json │ │ │ ├── preactjs.com_ts_of_undefined.json │ │ │ ├── progressive-app-m60.devtools.log.json │ │ │ ├── progressive-app-m60.json │ │ │ ├── progressive-app.json │ │ │ ├── screenshots │ │ │ │ ├── progressive-app-frame-0.jpg │ │ │ │ ├── progressive-app-frame-1.jpg │ │ │ │ ├── progressive-app-frame-2.jpg │ │ │ │ ├── progressive-app-frame-3.jpg │ │ │ │ ├── progressive-app-frame-4.jpg │ │ │ │ ├── progressive-app-frame-5.jpg │ │ │ │ ├── progressive-app-frame-6.jpg │ │ │ │ ├── progressive-app-frame-7.jpg │ │ │ │ ├── progressive-app-frame-8.jpg │ │ │ │ └── progressive-app-frame-9.jpg │ │ │ ├── site-with-redirect.devtools.log.json │ │ │ ├── site-with-redirect.json │ │ │ ├── speedindex-1ms-layout-m84.devtoolslog.json │ │ │ ├── speedindex-1ms-layout-m84.trace.json │ │ │ ├── threeframes-blank_content_more.json │ │ │ ├── timespan-trace-m91.json │ │ │ ├── trace-user-timings.json │ │ │ ├── tracingstarted-after-navstart.json │ │ │ ├── video-embeds-m84.devtools.log.json │ │ │ └── video-embeds-m84.json │ │ ├── unresolved-perflog.json │ │ ├── valid-custom-audit.js │ │ ├── valid-custom-gatherer.js │ │ └── wikipedia-redirect.devtoolslog.json │ ├── fraggle-rock │ │ ├── api-test-pptr.js │ │ ├── config │ │ │ ├── config-test.js │ │ │ ├── filters-test.js │ │ │ └── validation-test.js │ │ └── gather │ │ │ ├── base-artifacts-test.js │ │ │ ├── base-gatherer-test.js │ │ │ ├── driver-test.js │ │ │ ├── mock-driver.js │ │ │ ├── navigation-runner-test.js │ │ │ ├── runner-helpers-test.js │ │ │ ├── session-test.js │ │ │ ├── snapshot-runner-test.js │ │ │ └── timespan-runner-test.js │ ├── gather │ │ ├── devtools-log-test.js │ │ ├── driver-test.js │ │ ├── driver │ │ │ ├── dom-test.js │ │ │ ├── environment-test.js │ │ │ ├── execution-context-test.js │ │ │ ├── navigation-test.js │ │ │ ├── network-monitor-test.js │ │ │ ├── prepare-test.js │ │ │ ├── service-workers-test.js │ │ │ ├── storage-test.js │ │ │ └── wait-for-condition-test.js │ │ ├── fake-driver.js │ │ ├── fetcher-test.js │ │ ├── gather-runner-test.js │ │ ├── gatherers │ │ │ ├── accessibility-test.js │ │ │ ├── cache-contents-test.js │ │ │ ├── console-messages-test.js │ │ │ ├── css-usage-test.js │ │ │ ├── dobetterweb │ │ │ │ ├── optimized-images-test.js │ │ │ │ ├── password-inputs-with-prevented-paste-test.js │ │ │ │ ├── response-compression-test.js │ │ │ │ └── tags-blocking-first-paint-test.js │ │ │ ├── full-page-screenshot-test.js │ │ │ ├── gatherer-test.js │ │ │ ├── global-listeners-test.js │ │ │ ├── http-redirect-test.js │ │ │ ├── image-elements-test.js │ │ │ ├── inspector-issues-test.js │ │ │ ├── installability-errors-test.js │ │ │ ├── js-usage-test.js │ │ │ ├── link-elements-test.js │ │ │ ├── main-document-content-test.js │ │ │ ├── network-user-agent-test.js │ │ │ ├── script-elements-test.js │ │ │ ├── seo │ │ │ │ └── font-size-test.js │ │ │ ├── service-worker-test.js │ │ │ ├── source-maps-test.js │ │ │ ├── stacks-test.js │ │ │ ├── trace-elements-test.js │ │ │ ├── viewport-dimensions-test.js │ │ │ └── web-app-manifest-test.js │ │ └── mock-commands.js │ ├── index-test.js │ ├── lib │ │ ├── __snapshots__ │ │ │ └── timing-trace-saver-test.js.snap │ │ ├── arbitrary-equality-map-test.js │ │ ├── asset-saver-test.js │ │ ├── csp-evaluator-test.js │ │ ├── dependency-graph │ │ │ ├── base-node-test.js │ │ │ └── simulator │ │ │ │ ├── connection-pool-test.js │ │ │ │ ├── dns-cache-test.js │ │ │ │ ├── network-analyzer-test.js │ │ │ │ ├── simulator-test.js │ │ │ │ └── tcp-connection-test.js │ │ ├── emulation-test.js │ │ ├── i18n │ │ │ ├── i18n-test.js │ │ │ ├── locales-test.js │ │ │ └── swap-locale-test.js │ │ ├── icons-test.js │ │ ├── line-number-from-jsonld-path-test.js │ │ ├── manifest-parser-test.js │ │ ├── median-run-test.js │ │ ├── minification-estimator-test.js │ │ ├── minify-devtoolslog-test.js │ │ ├── minify-trace-test.js │ │ ├── navigation-error-test.js │ │ ├── network-recorder-test.js │ │ ├── network-request-test.js │ │ ├── page-functions-test.js │ │ ├── proto-preprocessor-test.js │ │ ├── rect-helpers-test.js │ │ ├── sd-validation-test.js │ │ ├── sentry-test.js │ │ ├── stack-packs-test.js │ │ ├── statistics-test.js │ │ ├── tappable-rects-test.js │ │ ├── third-party-web-test.js │ │ ├── timing-trace-saver-test.js │ │ ├── tracehouse │ │ │ ├── cpu-profile-model-test.js │ │ │ ├── main-thread-tasks-test.js │ │ │ └── trace-processor-test.js │ │ ├── traces │ │ │ └── pwmetrics-events-test.js │ │ └── url-shim-test.js │ ├── network-records-to-devtools-log-test.js │ ├── network-records-to-devtools-log.js │ ├── results │ │ ├── artifacts │ │ │ ├── artifacts.json │ │ │ ├── defaultPass.devtoolslog.json │ │ │ ├── defaultPass.trace.json │ │ │ ├── offlinePass.devtoolslog.json │ │ │ └── redirectPass.devtoolslog.json │ │ ├── sample-config.js │ │ └── sample_v2.json │ ├── runner-test.js │ ├── sample-json-test.js │ ├── scoring-test.js │ ├── scripts │ │ ├── i18n │ │ │ ├── bake-ctc-to-lhl-test.js │ │ │ ├── collect-strings-test.js │ │ │ └── prune-obsolete-lhl-messages-test.js │ │ └── lantern │ │ │ └── constants-test.js │ └── test-utils.js └── util-commonjs.js ├── lighthouse-logger ├── LICENSE ├── README.md ├── index.js ├── package.json └── yarn.lock ├── lighthouse-treemap ├── README.md ├── app │ ├── debug.json │ ├── images │ │ └── lighthouse-logo.svg │ ├── index.html │ ├── src │ │ ├── main.js │ │ └── util.js │ └── styles │ │ └── treemap.css ├── package.json ├── test │ ├── treemap-test-pptr.js │ └── util-test.js ├── tsconfig.json └── types │ └── treemap.d.ts ├── lighthouse-viewer ├── .eslintrc.cjs ├── README.md ├── app │ ├── images │ │ ├── lh_favicon_32px.png │ │ ├── lh_favicon_76px.png │ │ ├── lighthouse-logo.svg │ │ └── lighthouse-logo_512px.png │ ├── index.html │ ├── manifest.json │ ├── src │ │ ├── drag-and-drop.js │ │ ├── firebase-auth.js │ │ ├── github-api.js │ │ ├── lighthouse-report-viewer.js │ │ ├── main.js │ │ ├── psi-api.js │ │ └── viewer-ui-features.js │ └── styles │ │ └── viewer.css ├── package.json ├── test │ ├── drag-and-drop-test.js │ ├── test-helpers.js │ └── viewer-test-pptr.js ├── tsconfig.json └── types │ └── viewer.d.ts ├── now.json ├── package.json ├── proto ├── README.md ├── lighthouse-result.proto └── scripts │ └── json_roundtrip_via_proto.py ├── readme.md ├── report ├── .eslintrc.cjs ├── README.md ├── assets │ ├── standalone-template.html │ ├── styles.css │ └── templates.html ├── clients │ ├── bundle.js │ ├── psi.js │ └── standalone.js ├── generator │ ├── README.md │ ├── file-namer.js │ ├── flow-report-assets.js │ ├── package.json │ ├── report-assets.js │ ├── report-generator.js │ └── tsconfig.json ├── package.json ├── renderer │ ├── category-renderer.js │ ├── components.js │ ├── crc-details-renderer.js │ ├── details-renderer.js │ ├── dom.js │ ├── element-screenshot-renderer.js │ ├── i18n.js │ ├── logger.js │ ├── performance-category-renderer.js │ ├── pwa-category-renderer.js │ ├── report-renderer.js │ ├── report-ui-features.js │ ├── snippet-renderer.js │ ├── text-encoding.js │ └── util.js ├── test-assets │ ├── faux-psi-template.html │ └── faux-psi.js ├── test │ ├── clients │ │ └── psi-test.js │ ├── generator │ │ ├── file-namer-test.js │ │ ├── package.json │ │ └── report-generator-test.js │ └── renderer │ │ ├── category-renderer-test.js │ │ ├── components-test.js │ │ ├── crc-details-renderer-test.js │ │ ├── details-renderer-test.js │ │ ├── dom-test.js │ │ ├── element-screenshot-renderer-test.js │ │ ├── i18n-test.js │ │ ├── performance-category-renderer-test.js │ │ ├── pwa-category-renderer-test.js │ │ ├── report-renderer-test.js │ │ ├── report-ui-features-test.js │ │ ├── snippet-renderer-test.js │ │ ├── text-encoding-test.js │ │ └── util-test.js ├── tsconfig.json └── types │ ├── augment-dom.d.ts │ ├── buffer.d.ts │ ├── html-renderer.d.ts │ └── report-result.d.ts ├── root.js ├── third-party ├── chromium-synchronization │ ├── inspector-issueAdded-types-test.js │ └── installability-errors-test.js ├── chromium-webtests │ ├── README.md │ └── webtests │ │ └── http │ │ └── tests │ │ └── devtools │ │ └── lighthouse │ │ ├── lighthouse-block-url-expected.txt │ │ ├── lighthouse-block-url.js │ │ ├── lighthouse-clear-data-warning-expected.txt │ │ ├── lighthouse-clear-data-warning.js │ │ ├── lighthouse-emulate-run-expected.txt │ │ ├── lighthouse-emulate-run.js │ │ ├── lighthouse-export-run-expected.txt │ │ ├── lighthouse-export-run.js │ │ ├── lighthouse-flags-run-expected.txt │ │ ├── lighthouse-flags-run.js │ │ ├── lighthouse-i18n-run-expected.txt │ │ ├── lighthouse-i18n-run.js │ │ ├── lighthouse-limited-run-expected.txt │ │ ├── lighthouse-limited-run.js │ │ ├── lighthouse-prevent-run-expected.txt │ │ ├── lighthouse-prevent-run.js │ │ ├── lighthouse-successful-run-expected.txt │ │ ├── lighthouse-successful-run.js │ │ ├── lighthouse-view-trace-run-expected.txt │ │ ├── lighthouse-view-trace-run.js │ │ └── resources │ │ ├── lighthouse-basic.css │ │ ├── lighthouse-basic.html │ │ ├── lighthouse-emulate-pass.html │ │ └── lighthouse-storage.html ├── download-content-shell │ ├── LICENSE │ ├── README.md │ ├── download-content-shell.js │ └── utils.js └── snyk │ └── snapshot.json ├── tsconfig.json ├── types ├── artifacts.d.ts ├── audit.d.ts ├── config.d.ts ├── cssstyle │ └── index.d.ts ├── enquirer.d.ts ├── externs.d.ts ├── gatherer.d.ts ├── global-lh.d.ts ├── http-link-header │ └── index.d.ts ├── jest.d.ts ├── jsonld │ └── index.d.ts ├── jsonlint-mod.d.ts ├── lhr │ ├── audit-details.d.ts │ ├── audit-result.d.ts │ ├── budget.d.ts │ ├── flow.d.ts │ ├── i18n.d.ts │ ├── lhr.d.ts │ ├── settings.d.ts │ ├── treemap.d.ts │ └── tsconfig.json ├── lighthouse-logger │ └── index.d.ts ├── lookup-closest-locale │ └── index.d.ts ├── metaviewport-parser │ └── index.d.ts ├── node-fetch.d.ts ├── node.d.ts ├── parse-cache-control │ └── index.d.ts ├── pretty-json-stringify │ └── index.d.ts ├── protocol.d.ts ├── query-selector.d.ts ├── robots-parser │ └── index.d.ts ├── smokehouse.d.ts └── structured-data.d.ts └── yarn.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.cz-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.cz-config.js -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js eol=lf 2 | **/locales/*.json linguist-generated=true -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/ISSUE_TEMPLATE/Other.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/bump-nightly-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/scripts/bump-nightly-version.sh -------------------------------------------------------------------------------- /.github/scripts/git-get-shared-history.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/scripts/git-get-shared-history.sh -------------------------------------------------------------------------------- /.github/scripts/jest-retry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/scripts/jest-retry.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cron-weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/cron-weekly.yml -------------------------------------------------------------------------------- /.github/workflows/devtools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/devtools.yml -------------------------------------------------------------------------------- /.github/workflows/issue-assigner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/issue-assigner.yml -------------------------------------------------------------------------------- /.github/workflows/markdown.links.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/markdown.links.config.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/smoke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/smoke.yml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.mailmap -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/.npmignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/LICENSE -------------------------------------------------------------------------------- /assets/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/architecture.png -------------------------------------------------------------------------------- /assets/detail-type-examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/detail-type-examples.png -------------------------------------------------------------------------------- /assets/example_audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/example_audit.png -------------------------------------------------------------------------------- /assets/example_dev_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/example_dev_tools.png -------------------------------------------------------------------------------- /assets/lh_favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/lh_favicon.svg -------------------------------------------------------------------------------- /assets/lh_favicon_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/lh_favicon_32px.png -------------------------------------------------------------------------------- /assets/lh_favicon_76px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/lh_favicon_76px.png -------------------------------------------------------------------------------- /assets/lighthouse-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/lighthouse-logo.svg -------------------------------------------------------------------------------- /assets/lighthouse-logo_1024px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/lighthouse-logo_1024px.png -------------------------------------------------------------------------------- /assets/lighthouse-logo_512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/assets/lighthouse-logo_512px.png -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/changelog.md -------------------------------------------------------------------------------- /clients/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/.eslintrc.js -------------------------------------------------------------------------------- /clients/devtools-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/devtools-entry.js -------------------------------------------------------------------------------- /clients/devtools-report-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/devtools-report-assets.js -------------------------------------------------------------------------------- /clients/extension/images/lh_favicon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/images/lh_favicon_16x16.png -------------------------------------------------------------------------------- /clients/extension/images/lh_favicon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/images/lh_favicon_32x32.png -------------------------------------------------------------------------------- /clients/extension/images/lh_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/images/lh_logo.svg -------------------------------------------------------------------------------- /clients/extension/images/lh_logo_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/images/lh_logo_128x128.png -------------------------------------------------------------------------------- /clients/extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/manifest.json -------------------------------------------------------------------------------- /clients/extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/popup.html -------------------------------------------------------------------------------- /clients/extension/scripts/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/scripts/popup.js -------------------------------------------------------------------------------- /clients/extension/scripts/settings-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/scripts/settings-controller.js -------------------------------------------------------------------------------- /clients/extension/styles/lighthouse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/extension/styles/lighthouse.css -------------------------------------------------------------------------------- /clients/lightrider/lightrider-entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/lightrider/lightrider-entry.js -------------------------------------------------------------------------------- /clients/test/extension/popup-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/test/extension/popup-test.js -------------------------------------------------------------------------------- /clients/test/extension/settings-controller-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/test/extension/settings-controller-test.js -------------------------------------------------------------------------------- /clients/test/lightrider-entry-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/clients/test/lightrider-entry-test.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/authenticated-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/authenticated-pages.md -------------------------------------------------------------------------------- /docs/bug-labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/bug-labels.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/emulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/emulation.md -------------------------------------------------------------------------------- /docs/error-reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/error-reporting.md -------------------------------------------------------------------------------- /docs/hacking-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/hacking-tips.md -------------------------------------------------------------------------------- /docs/headless-chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/headless-chrome.md -------------------------------------------------------------------------------- /docs/lantern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/lantern.md -------------------------------------------------------------------------------- /docs/new-audits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/new-audits.md -------------------------------------------------------------------------------- /docs/performance-budgets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/performance-budgets.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/puppeteer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/puppeteer.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/readme.md -------------------------------------------------------------------------------- /docs/recipes/auth/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/.eslintrc.js -------------------------------------------------------------------------------- /docs/recipes/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/README.md -------------------------------------------------------------------------------- /docs/recipes/auth/example-lh-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/example-lh-auth.js -------------------------------------------------------------------------------- /docs/recipes/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/package.json -------------------------------------------------------------------------------- /docs/recipes/auth/server/public/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/server/public/dashboard.html -------------------------------------------------------------------------------- /docs/recipes/auth/server/public/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/server/public/home.html -------------------------------------------------------------------------------- /docs/recipes/auth/server/public/unauthenticated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/server/public/unauthenticated.html -------------------------------------------------------------------------------- /docs/recipes/auth/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/auth/server/server.js -------------------------------------------------------------------------------- /docs/recipes/custom-audit/custom-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-audit/custom-config.js -------------------------------------------------------------------------------- /docs/recipes/custom-audit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-audit/package.json -------------------------------------------------------------------------------- /docs/recipes/custom-audit/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-audit/readme.md -------------------------------------------------------------------------------- /docs/recipes/custom-audit/searchable-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-audit/searchable-audit.js -------------------------------------------------------------------------------- /docs/recipes/custom-audit/searchable-gatherer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-audit/searchable-gatherer.js -------------------------------------------------------------------------------- /docs/recipes/custom-gatherer-puppeteer/custom-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-gatherer-puppeteer/custom-audit.js -------------------------------------------------------------------------------- /docs/recipes/custom-gatherer-puppeteer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-gatherer-puppeteer/package.json -------------------------------------------------------------------------------- /docs/recipes/custom-gatherer-puppeteer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-gatherer-puppeteer/readme.md -------------------------------------------------------------------------------- /docs/recipes/custom-gatherer-puppeteer/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/custom-gatherer-puppeteer/test.sh -------------------------------------------------------------------------------- /docs/recipes/gulp/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/gulp/gulpfile.js -------------------------------------------------------------------------------- /docs/recipes/gulp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/gulp/package.json -------------------------------------------------------------------------------- /docs/recipes/gulp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/gulp/public/index.html -------------------------------------------------------------------------------- /docs/recipes/gulp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/gulp/readme.md -------------------------------------------------------------------------------- /docs/recipes/integration-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/integration-test/README.md -------------------------------------------------------------------------------- /docs/recipes/integration-test/example-lh-auth.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/integration-test/example-lh-auth.test.js -------------------------------------------------------------------------------- /docs/recipes/integration-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/integration-test/package.json -------------------------------------------------------------------------------- /docs/recipes/lighthouse-plugin-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/lighthouse-plugin-example/package.json -------------------------------------------------------------------------------- /docs/recipes/lighthouse-plugin-example/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/lighthouse-plugin-example/plugin.js -------------------------------------------------------------------------------- /docs/recipes/lighthouse-plugin-example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/recipes/lighthouse-plugin-example/readme.md -------------------------------------------------------------------------------- /docs/releasing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/releasing.md -------------------------------------------------------------------------------- /docs/scoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/scoring.md -------------------------------------------------------------------------------- /docs/throttling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/throttling.md -------------------------------------------------------------------------------- /docs/understanding-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/understanding-results.md -------------------------------------------------------------------------------- /docs/v8-perf-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/v8-perf-faq.md -------------------------------------------------------------------------------- /docs/variability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/docs/variability.md -------------------------------------------------------------------------------- /eslint-local-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/eslint-local-rules.js -------------------------------------------------------------------------------- /flow-report/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/.eslintrc.js -------------------------------------------------------------------------------- /flow-report/assets/standalone-flow-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/assets/standalone-flow-template.html -------------------------------------------------------------------------------- /flow-report/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/assets/styles.css -------------------------------------------------------------------------------- /flow-report/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/jest.config.js -------------------------------------------------------------------------------- /flow-report/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/src/app.tsx -------------------------------------------------------------------------------- /flow-report/src/sidebar/flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/src/sidebar/flow.tsx -------------------------------------------------------------------------------- /flow-report/src/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/src/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /flow-report/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/src/util.ts -------------------------------------------------------------------------------- /flow-report/standalone-flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/standalone-flow.tsx -------------------------------------------------------------------------------- /flow-report/test/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/test/App-test.tsx -------------------------------------------------------------------------------- /flow-report/test/setup/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/test/setup/global-setup.ts -------------------------------------------------------------------------------- /flow-report/test/sidebar/flow-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/test/sidebar/flow-test.tsx -------------------------------------------------------------------------------- /flow-report/test/sidebar/sidebar-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/test/sidebar/sidebar-test.tsx -------------------------------------------------------------------------------- /flow-report/test/util-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/test/util-test.tsx -------------------------------------------------------------------------------- /flow-report/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/tsconfig.json -------------------------------------------------------------------------------- /flow-report/types/flow-report.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/flow-report/types/flow-report.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/jest.config.js -------------------------------------------------------------------------------- /lighthouse-cli/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/bin.js -------------------------------------------------------------------------------- /lighthouse-cli/cli-flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/cli-flags.js -------------------------------------------------------------------------------- /lighthouse-cli/commands/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/commands/commands.js -------------------------------------------------------------------------------- /lighthouse-cli/commands/list-audits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/commands/list-audits.js -------------------------------------------------------------------------------- /lighthouse-cli/commands/list-trace-categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/commands/list-trace-categories.js -------------------------------------------------------------------------------- /lighthouse-cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/index.js -------------------------------------------------------------------------------- /lighthouse-cli/printer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/printer.js -------------------------------------------------------------------------------- /lighthouse-cli/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/run.js -------------------------------------------------------------------------------- /lighthouse-cli/sentry-prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/sentry-prompt.js -------------------------------------------------------------------------------- /lighthouse-cli/test/cli/bin-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/cli/bin-test.js -------------------------------------------------------------------------------- /lighthouse-cli/test/cli/cli-flags-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/cli/cli-flags-test.js -------------------------------------------------------------------------------- /lighthouse-cli/test/cli/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/cli/index-test.js -------------------------------------------------------------------------------- /lighthouse-cli/test/cli/printer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/cli/printer-test.js -------------------------------------------------------------------------------- /lighthouse-cli/test/cli/run-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/cli/run-test.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/a11y/a11y_tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/a11y/a11y_tester.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/badssl-iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/badssl-iframe.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/byte-efficiency/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/byte-efficiency/bundle.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/byte-efficiency/gzip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/byte-efficiency/gzip.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/byte-efficiency/large.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/byte-efficiency/large.svg -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/byte-efficiency/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/byte-efficiency/script.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/cli-flags-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/cli-flags-path.json -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/csp.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/debugger.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/debugger.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/delayed-fcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/delayed-fcp.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/delayed-lcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/delayed-lcp.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/dobetterweb/dbw_tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/dobetterweb/dbw_tester.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/dobetterweb/empty.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/dobetterweb/empty_module.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/extra-headers/invalid.txt: -------------------------------------------------------------------------------- 1 | NotJSON 2 | -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/extra-headers/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/extra-headers/valid.json -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/form.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/infinite-loop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/infinite-loop.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/js-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/js-redirect.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/lantern-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/lantern-data.json -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/launcher-icon-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/launcher-icon-100x100.png -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/launcher-icon-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/launcher-icon-4x.png -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/legacy-javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/legacy-javascript.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/legacy-javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/legacy-javascript.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/manifest.json -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/offline-ready-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/offline-ready-sw.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/offline-ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/offline-ready.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/online-only.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/online-only.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/oopif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/oopif.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/animations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/animations.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/cors-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/cors-fonts.css -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/debug.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/delayed-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/delayed-element.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/fonts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/fonts.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/frame-metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/frame-metrics.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/level-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/level-2.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/level-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/level-3.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/preload_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/preload_style.css -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/preload_tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/preload_tester.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/third-party.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/third-party.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/trace-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/trace-elements.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/perf/unsized-images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/perf/unsized-images.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/preload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/preload.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/redirects-final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/redirects-final.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/ric-shim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/ric-shim.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/screenshot.gif -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/screenshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/screenshot.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/seo/seo-tap-targets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/seo/seo-tap-targets.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/seo/seo-tester-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/seo/seo-tester-styles.css -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/seo/seo-tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/seo/seo-tester.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/source-map/script.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/source-map/script.js.map -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/static-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/static-server.js -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/tricky-main-thread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/tricky-main-thread.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/tricky-tti-late-fcp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/tricky-tti-late-fcp.html -------------------------------------------------------------------------------- /lighthouse-cli/test/fixtures/tricky-tti.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/fixtures/tricky-tti.html -------------------------------------------------------------------------------- /lighthouse-cli/test/smokehouse/frontends/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/smokehouse/frontends/lib.js -------------------------------------------------------------------------------- /lighthouse-cli/test/smokehouse/frontends/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/smokehouse/frontends/node.js -------------------------------------------------------------------------------- /lighthouse-cli/test/smokehouse/lib/local-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/smokehouse/lib/local-console.js -------------------------------------------------------------------------------- /lighthouse-cli/test/smokehouse/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/smokehouse/readme.md -------------------------------------------------------------------------------- /lighthouse-cli/test/smokehouse/report-assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/smokehouse/report-assert.js -------------------------------------------------------------------------------- /lighthouse-cli/test/smokehouse/smokehouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/smokehouse/smokehouse.js -------------------------------------------------------------------------------- /lighthouse-cli/test/static-server-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-cli/test/static-server-test.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/accesskeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/accesskeys.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/aria-roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/aria-roles.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/axe-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/axe-audit.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/button-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/button-name.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/bypass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/bypass.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/color-contrast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/color-contrast.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/dlitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/dlitem.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/document-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/document-title.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/frame-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/frame-title.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/heading-order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/heading-order.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/html-has-lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/html-has-lang.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/image-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/image-alt.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/label.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/link-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/link-name.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/list.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/listitem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/listitem.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/meta-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/meta-refresh.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/meta-viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/meta-viewport.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/object-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/object-alt.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/tabindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/tabindex.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/valid-lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/valid-lang.js -------------------------------------------------------------------------------- /lighthouse-core/audits/accessibility/video-caption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/accessibility/video-caption.js -------------------------------------------------------------------------------- /lighthouse-core/audits/apple-touch-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/apple-touch-icon.js -------------------------------------------------------------------------------- /lighthouse-core/audits/audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/audit.js -------------------------------------------------------------------------------- /lighthouse-core/audits/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/autocomplete.js -------------------------------------------------------------------------------- /lighthouse-core/audits/bootup-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/bootup-time.js -------------------------------------------------------------------------------- /lighthouse-core/audits/content-width.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/content-width.js -------------------------------------------------------------------------------- /lighthouse-core/audits/critical-request-chains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/critical-request-chains.js -------------------------------------------------------------------------------- /lighthouse-core/audits/csp-xss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/csp-xss.js -------------------------------------------------------------------------------- /lighthouse-core/audits/deprecations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/deprecations.js -------------------------------------------------------------------------------- /lighthouse-core/audits/diagnostics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/diagnostics.js -------------------------------------------------------------------------------- /lighthouse-core/audits/dobetterweb/charset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/dobetterweb/charset.js -------------------------------------------------------------------------------- /lighthouse-core/audits/dobetterweb/doctype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/dobetterweb/doctype.js -------------------------------------------------------------------------------- /lighthouse-core/audits/dobetterweb/dom-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/dobetterweb/dom-size.js -------------------------------------------------------------------------------- /lighthouse-core/audits/dobetterweb/inspector-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/dobetterweb/inspector-issues.js -------------------------------------------------------------------------------- /lighthouse-core/audits/dobetterweb/js-libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/dobetterweb/js-libraries.js -------------------------------------------------------------------------------- /lighthouse-core/audits/dobetterweb/uses-http2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/dobetterweb/uses-http2.js -------------------------------------------------------------------------------- /lighthouse-core/audits/errors-in-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/errors-in-console.js -------------------------------------------------------------------------------- /lighthouse-core/audits/final-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/final-screenshot.js -------------------------------------------------------------------------------- /lighthouse-core/audits/font-display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/font-display.js -------------------------------------------------------------------------------- /lighthouse-core/audits/full-page-screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/full-page-screenshot.js -------------------------------------------------------------------------------- /lighthouse-core/audits/image-aspect-ratio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/image-aspect-ratio.js -------------------------------------------------------------------------------- /lighthouse-core/audits/image-size-responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/image-size-responsive.js -------------------------------------------------------------------------------- /lighthouse-core/audits/installable-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/installable-manifest.js -------------------------------------------------------------------------------- /lighthouse-core/audits/is-on-https.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/is-on-https.js -------------------------------------------------------------------------------- /lighthouse-core/audits/layout-shift-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/layout-shift-elements.js -------------------------------------------------------------------------------- /lighthouse-core/audits/lcp-lazy-loaded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/lcp-lazy-loaded.js -------------------------------------------------------------------------------- /lighthouse-core/audits/long-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/long-tasks.js -------------------------------------------------------------------------------- /lighthouse-core/audits/main-thread-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/main-thread-tasks.js -------------------------------------------------------------------------------- /lighthouse-core/audits/mainthread-work-breakdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/mainthread-work-breakdown.js -------------------------------------------------------------------------------- /lighthouse-core/audits/manual/manual-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/manual/manual-audit.js -------------------------------------------------------------------------------- /lighthouse-core/audits/manual/pwa-cross-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/manual/pwa-cross-browser.js -------------------------------------------------------------------------------- /lighthouse-core/audits/manual/pwa-each-page-has-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/manual/pwa-each-page-has-url.js -------------------------------------------------------------------------------- /lighthouse-core/audits/manual/pwa-page-transitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/manual/pwa-page-transitions.js -------------------------------------------------------------------------------- /lighthouse-core/audits/maskable-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/maskable-icon.js -------------------------------------------------------------------------------- /lighthouse-core/audits/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/metrics.js -------------------------------------------------------------------------------- /lighthouse-core/audits/metrics/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/metrics/interactive.js -------------------------------------------------------------------------------- /lighthouse-core/audits/metrics/max-potential-fid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/metrics/max-potential-fid.js -------------------------------------------------------------------------------- /lighthouse-core/audits/metrics/speed-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/metrics/speed-index.js -------------------------------------------------------------------------------- /lighthouse-core/audits/metrics/total-blocking-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/metrics/total-blocking-time.js -------------------------------------------------------------------------------- /lighthouse-core/audits/multi-check-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/multi-check-audit.js -------------------------------------------------------------------------------- /lighthouse-core/audits/network-requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/network-requests.js -------------------------------------------------------------------------------- /lighthouse-core/audits/network-rtt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/network-rtt.js -------------------------------------------------------------------------------- /lighthouse-core/audits/network-server-latency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/network-server-latency.js -------------------------------------------------------------------------------- /lighthouse-core/audits/no-unload-listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/no-unload-listeners.js -------------------------------------------------------------------------------- /lighthouse-core/audits/non-composited-animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/non-composited-animations.js -------------------------------------------------------------------------------- /lighthouse-core/audits/performance-budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/performance-budget.js -------------------------------------------------------------------------------- /lighthouse-core/audits/predictive-perf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/predictive-perf.js -------------------------------------------------------------------------------- /lighthouse-core/audits/preload-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/preload-fonts.js -------------------------------------------------------------------------------- /lighthouse-core/audits/preload-lcp-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/preload-lcp-image.js -------------------------------------------------------------------------------- /lighthouse-core/audits/redirects-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/redirects-http.js -------------------------------------------------------------------------------- /lighthouse-core/audits/redirects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/redirects.js -------------------------------------------------------------------------------- /lighthouse-core/audits/resource-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/resource-summary.js -------------------------------------------------------------------------------- /lighthouse-core/audits/screenshot-thumbnails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/screenshot-thumbnails.js -------------------------------------------------------------------------------- /lighthouse-core/audits/script-treemap-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/script-treemap-data.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/canonical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/canonical.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/crawlable-anchors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/crawlable-anchors.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/font-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/font-size.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/hreflang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/hreflang.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/http-status-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/http-status-code.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/is-crawlable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/is-crawlable.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/link-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/link-text.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/manual/structured-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/manual/structured-data.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/meta-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/meta-description.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/plugins.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/robots-txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/robots-txt.js -------------------------------------------------------------------------------- /lighthouse-core/audits/seo/tap-targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/seo/tap-targets.js -------------------------------------------------------------------------------- /lighthouse-core/audits/server-response-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/server-response-time.js -------------------------------------------------------------------------------- /lighthouse-core/audits/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/service-worker.js -------------------------------------------------------------------------------- /lighthouse-core/audits/splash-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/splash-screen.js -------------------------------------------------------------------------------- /lighthouse-core/audits/themed-omnibox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/themed-omnibox.js -------------------------------------------------------------------------------- /lighthouse-core/audits/third-party-facades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/third-party-facades.js -------------------------------------------------------------------------------- /lighthouse-core/audits/third-party-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/third-party-summary.js -------------------------------------------------------------------------------- /lighthouse-core/audits/timing-budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/timing-budget.js -------------------------------------------------------------------------------- /lighthouse-core/audits/unsized-images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/unsized-images.js -------------------------------------------------------------------------------- /lighthouse-core/audits/user-timings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/user-timings.js -------------------------------------------------------------------------------- /lighthouse-core/audits/uses-rel-preconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/uses-rel-preconnect.js -------------------------------------------------------------------------------- /lighthouse-core/audits/uses-rel-preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/uses-rel-preload.js -------------------------------------------------------------------------------- /lighthouse-core/audits/valid-source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/valid-source-maps.js -------------------------------------------------------------------------------- /lighthouse-core/audits/viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/viewport.js -------------------------------------------------------------------------------- /lighthouse-core/audits/violation-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/audits/violation-audit.js -------------------------------------------------------------------------------- /lighthouse-core/computed/computed-artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/computed-artifact.js -------------------------------------------------------------------------------- /lighthouse-core/computed/critical-request-chains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/critical-request-chains.js -------------------------------------------------------------------------------- /lighthouse-core/computed/image-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/image-records.js -------------------------------------------------------------------------------- /lighthouse-core/computed/js-bundles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/js-bundles.js -------------------------------------------------------------------------------- /lighthouse-core/computed/load-simulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/load-simulator.js -------------------------------------------------------------------------------- /lighthouse-core/computed/main-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/main-resource.js -------------------------------------------------------------------------------- /lighthouse-core/computed/main-thread-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/main-thread-tasks.js -------------------------------------------------------------------------------- /lighthouse-core/computed/manifest-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/manifest-values.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/interactive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/interactive.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/lantern-metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/lantern-metric.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/max-potential-fid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/max-potential-fid.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/metric.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/navigation-metric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/navigation-metric.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/speed-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/speed-index.js -------------------------------------------------------------------------------- /lighthouse-core/computed/metrics/timing-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/metrics/timing-summary.js -------------------------------------------------------------------------------- /lighthouse-core/computed/module-duplication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/module-duplication.js -------------------------------------------------------------------------------- /lighthouse-core/computed/network-analysis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/network-analysis.js -------------------------------------------------------------------------------- /lighthouse-core/computed/network-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/network-records.js -------------------------------------------------------------------------------- /lighthouse-core/computed/page-dependency-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/page-dependency-graph.js -------------------------------------------------------------------------------- /lighthouse-core/computed/processed-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/processed-navigation.js -------------------------------------------------------------------------------- /lighthouse-core/computed/processed-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/processed-trace.js -------------------------------------------------------------------------------- /lighthouse-core/computed/resource-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/resource-summary.js -------------------------------------------------------------------------------- /lighthouse-core/computed/screenshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/screenshots.js -------------------------------------------------------------------------------- /lighthouse-core/computed/speedline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/speedline.js -------------------------------------------------------------------------------- /lighthouse-core/computed/trace-of-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/trace-of-tab.js -------------------------------------------------------------------------------- /lighthouse-core/computed/unused-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/unused-css.js -------------------------------------------------------------------------------- /lighthouse-core/computed/unused-javascript-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/unused-javascript-summary.js -------------------------------------------------------------------------------- /lighthouse-core/computed/user-timings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/user-timings.js -------------------------------------------------------------------------------- /lighthouse-core/computed/viewport-meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/computed/viewport-meta.js -------------------------------------------------------------------------------- /lighthouse-core/config/budget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/budget.js -------------------------------------------------------------------------------- /lighthouse-core/config/config-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/config-helpers.js -------------------------------------------------------------------------------- /lighthouse-core/config/config-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/config-plugin.js -------------------------------------------------------------------------------- /lighthouse-core/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/config.js -------------------------------------------------------------------------------- /lighthouse-core/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/constants.js -------------------------------------------------------------------------------- /lighthouse-core/config/default-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/default-config.js -------------------------------------------------------------------------------- /lighthouse-core/config/desktop-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/desktop-config.js -------------------------------------------------------------------------------- /lighthouse-core/config/experimental-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/experimental-config.js -------------------------------------------------------------------------------- /lighthouse-core/config/full-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/full-config.js -------------------------------------------------------------------------------- /lighthouse-core/config/lr-desktop-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/lr-desktop-config.js -------------------------------------------------------------------------------- /lighthouse-core/config/lr-mobile-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/lr-mobile-config.js -------------------------------------------------------------------------------- /lighthouse-core/config/metrics-to-audits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/metrics-to-audits.js -------------------------------------------------------------------------------- /lighthouse-core/config/perf-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/config/perf-config.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/api.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/config/config.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/config/default-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/config/default-config.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/config/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/config/filters.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/config/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/config/validation.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/base-artifacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/base-artifacts.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/base-gatherer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/base-gatherer.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/driver.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/runner-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/runner-helpers.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/session.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/snapshot-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/snapshot-runner.js -------------------------------------------------------------------------------- /lighthouse-core/fraggle-rock/gather/timespan-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/fraggle-rock/gather/timespan-runner.js -------------------------------------------------------------------------------- /lighthouse-core/gather/connections/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/connections/connection.js -------------------------------------------------------------------------------- /lighthouse-core/gather/connections/cri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/connections/cri.js -------------------------------------------------------------------------------- /lighthouse-core/gather/connections/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/connections/raw.js -------------------------------------------------------------------------------- /lighthouse-core/gather/devtools-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/devtools-log.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/dom.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/environment.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/execution-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/execution-context.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/navigation.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/network-monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/network-monitor.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/network.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/prepare.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/service-workers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/service-workers.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/storage.js -------------------------------------------------------------------------------- /lighthouse-core/gather/driver/wait-for-condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/driver/wait-for-condition.js -------------------------------------------------------------------------------- /lighthouse-core/gather/fetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/fetcher.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gather-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gather-runner.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/accessibility.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/anchor-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/anchor-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/cache-contents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/cache-contents.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/console-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/console-messages.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/css-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/css-usage.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/devtools-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/devtools-log.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/form-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/gather-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/gather-context.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/gatherer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/gatherer.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/global-listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/global-listeners.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/host-form-factor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/host-form-factor.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/host-user-agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/host-user-agent.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/http-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/http-redirect.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/iframe-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/iframe-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/image-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/image-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/inspector-issues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/inspector-issues.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/js-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/js-usage.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/link-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/link-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/meta-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/meta-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/network-user-agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/network-user-agent.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/script-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/script-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/seo/font-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/seo/font-size.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/seo/robots-txt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/seo/robots-txt.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/seo/tap-targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/seo/tap-targets.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/service-worker.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/source-maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/source-maps.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/stacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/stacks.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/trace-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/trace-compat.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/trace-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/trace-elements.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/trace.js -------------------------------------------------------------------------------- /lighthouse-core/gather/gatherers/web-app-manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/gather/gatherers/web-app-manifest.js -------------------------------------------------------------------------------- /lighthouse-core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/index.js -------------------------------------------------------------------------------- /lighthouse-core/lib/arbitrary-equality-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/arbitrary-equality-map.js -------------------------------------------------------------------------------- /lighthouse-core/lib/asset-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/asset-saver.js -------------------------------------------------------------------------------- /lighthouse-core/lib/axe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/axe.js -------------------------------------------------------------------------------- /lighthouse-core/lib/cdt/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/cdt/Common.js -------------------------------------------------------------------------------- /lighthouse-core/lib/cdt/SDK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/cdt/SDK.js -------------------------------------------------------------------------------- /lighthouse-core/lib/cdt/generated/SourceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/cdt/generated/SourceMap.js -------------------------------------------------------------------------------- /lighthouse-core/lib/csp-evaluator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/csp-evaluator.js -------------------------------------------------------------------------------- /lighthouse-core/lib/dependency-graph/base-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/dependency-graph/base-node.js -------------------------------------------------------------------------------- /lighthouse-core/lib/dependency-graph/cpu-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/dependency-graph/cpu-node.js -------------------------------------------------------------------------------- /lighthouse-core/lib/dependency-graph/network-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/dependency-graph/network-node.js -------------------------------------------------------------------------------- /lighthouse-core/lib/emulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/emulation.js -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/README.md -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/i18n.js -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales.js -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ar-XB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ar-XB.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ar.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/bg.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ca.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/cs.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/da.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/de.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/el.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/en-GB.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/en-US.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/en-XA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/en-XA.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/en-XL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/en-XL.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/es-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/es-419.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/es.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/fi.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/fil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/fil.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/fr.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/he.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/hi.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/hr.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/hu.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/id.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/it.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ja.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ko.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/lt.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/lv.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/nl.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/no.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/pl.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/pt-PT.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/pt.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ro.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ru.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/sk.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/sl.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/sr-Latn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/sr-Latn.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/sr.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/sv.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/ta.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/te.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/th.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/tr.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/uk.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/vi.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/zh-HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/zh-HK.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/zh-TW.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/locales/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/locales/zh.json -------------------------------------------------------------------------------- /lighthouse-core/lib/i18n/swap-locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/i18n/swap-locale.js -------------------------------------------------------------------------------- /lighthouse-core/lib/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/icons.js -------------------------------------------------------------------------------- /lighthouse-core/lib/lantern-trace-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/lantern-trace-saver.js -------------------------------------------------------------------------------- /lighthouse-core/lib/lh-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/lh-env.js -------------------------------------------------------------------------------- /lighthouse-core/lib/lh-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/lh-error.js -------------------------------------------------------------------------------- /lighthouse-core/lib/lh-trace-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/lh-trace-processor.js -------------------------------------------------------------------------------- /lighthouse-core/lib/manifest-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/manifest-parser.js -------------------------------------------------------------------------------- /lighthouse-core/lib/median-run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/median-run.js -------------------------------------------------------------------------------- /lighthouse-core/lib/minification-estimator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/minification-estimator.js -------------------------------------------------------------------------------- /lighthouse-core/lib/minify-devtoolslog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/minify-devtoolslog.js -------------------------------------------------------------------------------- /lighthouse-core/lib/minify-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/minify-trace.js -------------------------------------------------------------------------------- /lighthouse-core/lib/navigation-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/navigation-error.js -------------------------------------------------------------------------------- /lighthouse-core/lib/network-recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/network-recorder.js -------------------------------------------------------------------------------- /lighthouse-core/lib/network-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/network-request.js -------------------------------------------------------------------------------- /lighthouse-core/lib/page-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/page-functions.js -------------------------------------------------------------------------------- /lighthouse-core/lib/proto-preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/proto-preprocessor.js -------------------------------------------------------------------------------- /lighthouse-core/lib/rect-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/rect-helpers.js -------------------------------------------------------------------------------- /lighthouse-core/lib/sd-validation/json-expander.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/sd-validation/json-expander.js -------------------------------------------------------------------------------- /lighthouse-core/lib/sd-validation/json-linter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/sd-validation/json-linter.js -------------------------------------------------------------------------------- /lighthouse-core/lib/sd-validation/schema-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/sd-validation/schema-validator.js -------------------------------------------------------------------------------- /lighthouse-core/lib/sd-validation/sd-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/sd-validation/sd-validation.js -------------------------------------------------------------------------------- /lighthouse-core/lib/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/sentry.js -------------------------------------------------------------------------------- /lighthouse-core/lib/stack-packs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/stack-packs.js -------------------------------------------------------------------------------- /lighthouse-core/lib/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/statistics.js -------------------------------------------------------------------------------- /lighthouse-core/lib/tappable-rects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/tappable-rects.js -------------------------------------------------------------------------------- /lighthouse-core/lib/third-party-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/third-party-web.js -------------------------------------------------------------------------------- /lighthouse-core/lib/timing-trace-saver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/timing-trace-saver.js -------------------------------------------------------------------------------- /lighthouse-core/lib/tracehouse/cpu-profile-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/tracehouse/cpu-profile-model.js -------------------------------------------------------------------------------- /lighthouse-core/lib/tracehouse/main-thread-tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/tracehouse/main-thread-tasks.js -------------------------------------------------------------------------------- /lighthouse-core/lib/tracehouse/task-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/tracehouse/task-groups.js -------------------------------------------------------------------------------- /lighthouse-core/lib/tracehouse/trace-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/tracehouse/trace-processor.js -------------------------------------------------------------------------------- /lighthouse-core/lib/traces/pwmetrics-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/traces/pwmetrics-events.js -------------------------------------------------------------------------------- /lighthouse-core/lib/type-verifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/type-verifiers.js -------------------------------------------------------------------------------- /lighthouse-core/lib/url-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/lib/url-shim.js -------------------------------------------------------------------------------- /lighthouse-core/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/runner.js -------------------------------------------------------------------------------- /lighthouse-core/scoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scoring.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/assert-golden-lhr-unchanged.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/assert-golden-lhr-unchanged.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/benchmark-plus-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/benchmark-plus-extras.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/benchmark.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/build-test-flow-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/build-test-flow-report.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/c8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/c8.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/cleanup-LHR-for-diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/cleanup-LHR-for-diff.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/cleanup-vuln-snapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/cleanup-vuln-snapshot.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/compare-runs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/compare-runs.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/copy-util-commonjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/copy-util-commonjs.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/dogfood-lhci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/dogfood-lhci.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/download-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/download-chrome.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/README.md -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/extract-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/extract-data.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/fleet-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/fleet-create.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/gcp-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/gcp-run.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/gcp-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/gcp-setup.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/run.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/gcp-collection/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/gcp-collection/urls.txt -------------------------------------------------------------------------------- /lighthouse-core/scripts/generate-timing-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/generate-timing-trace.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/git3po-rules/no-fcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/git3po-rules/no-fcp.yaml -------------------------------------------------------------------------------- /lighthouse-core/scripts/git3po-rules/page-hung.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/git3po-rules/page-hung.yaml -------------------------------------------------------------------------------- /lighthouse-core/scripts/git3po-rules/tracing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/git3po-rules/tracing.yaml -------------------------------------------------------------------------------- /lighthouse-core/scripts/i18n/bake-ctc-to-lhl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/i18n/bake-ctc-to-lhl.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/i18n/collect-strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/i18n/collect-strings.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/i18n/count-translated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/i18n/count-translated.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/json-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/json-size.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/collect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/collect/README.md -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/collect/collect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/collect/collect.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/collect/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/collect/common.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/collect/gcp-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/collect/gcp-run.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/collect/golden.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/collect/golden.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/collect/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/collect/urls.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/constants.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/debug-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/debug-url.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/download-traces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/download-traces.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/minify-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/minify-trace.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/lantern/run-once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/lantern/run-once.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/legacy-javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/legacy-javascript/README.md -------------------------------------------------------------------------------- /lighthouse-core/scripts/legacy-javascript/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/legacy-javascript/hash.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/legacy-javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/legacy-javascript/main.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/legacy-javascript/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/legacy-javascript/run.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/legacy-javascript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/legacy-javascript/yarn.lock -------------------------------------------------------------------------------- /lighthouse-core/scripts/manual-chrome-launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/manual-chrome-launcher.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/open-devtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/open-devtools.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/pptr-run-devtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/pptr-run-devtools.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/print-a11y-scoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/print-a11y-scoring.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/print-contributors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/print-contributors.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/release/bump-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/release/bump-versions.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/release/prepare-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/release/prepare-commit.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/release/prepare-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/release/prepare-package.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/release/prepare-pristine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/release/prepare-pristine.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/release/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/release/test.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/roll-to-devtools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/roll-to-devtools.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/run-git3po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/run-git3po.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/save-latest-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/save-latest-run.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/test-lantern.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/test-lantern.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/test-legacy-javascript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/test-legacy-javascript.sh -------------------------------------------------------------------------------- /lighthouse-core/scripts/update-flow-fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/update-flow-fixtures.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/update-report-fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/update-report-fixtures.js -------------------------------------------------------------------------------- /lighthouse-core/scripts/update-vuln-snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/scripts/update-vuln-snapshot.sh -------------------------------------------------------------------------------- /lighthouse-core/test/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/.prettierrc -------------------------------------------------------------------------------- /lighthouse-core/test/audits/audit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/audit-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/autocomplete-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/autocomplete-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/bootup-time-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/bootup-time-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/content-width-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/content-width-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/csp-xss-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/csp-xss-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/deprecations-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/deprecations-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/diagnostics-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/diagnostics-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/font-display-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/font-display-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/is-on-https-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/is-on-https-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/lcp-lazy-loaded-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/lcp-lazy-loaded-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/long-tasks-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/long-tasks-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/manual-audit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/manual-audit-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/maskable-icon-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/maskable-icon-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/metrics-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/metrics-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/network-rtt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/network-rtt-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/predictive-perf-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/predictive-perf-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/preload-fonts-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/preload-fonts-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/redirects-http-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/redirects-http-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/redirects-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/redirects-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/canonical-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/canonical-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/font-size-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/font-size-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/hreflang-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/hreflang-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/link-text-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/link-text-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/plugins-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/plugins-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/robots-txt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/robots-txt-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/seo/tap-targets-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/seo/tap-targets-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/service-worker-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/service-worker-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/splash-screen-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/splash-screen-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/themed-omnibox-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/themed-omnibox-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/timing-budget-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/timing-budget-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/unsized-images-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/unsized-images-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/user-timing-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/user-timing-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/audits/viewport-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/audits/viewport-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/chromium-web-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/chromium-web-tests/README.md -------------------------------------------------------------------------------- /lighthouse-core/test/computed/image-records-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/image-records-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/js-bundles-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/js-bundles-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/main-resource-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/main-resource-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/screenshots-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/screenshots-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/speedline-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/speedline-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/trace-of-tab-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/trace-of-tab-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/unused-css-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/unused-css-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/computed/viewport-meta-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/computed/viewport-meta-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/config/budget-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/config/budget-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/config/config-helpers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/config/config-helpers-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/config/config-plugin-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/config/config-plugin-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/config/config-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/config/config-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/config/default-config-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/config/default-config-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/create-test-trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/create-test-trace.js -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/lr.devtoolslog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/lr.devtoolslog.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/manifest-bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/manifest-bom.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/manifest.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/simple-budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/simple-budget.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/traces/animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/traces/animation.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/traces/lcp-m78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/traces/lcp-m78.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/traces/load.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/traces/load.json -------------------------------------------------------------------------------- /lighthouse-core/test/fixtures/valid-custom-audit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fixtures/valid-custom-audit.js -------------------------------------------------------------------------------- /lighthouse-core/test/fraggle-rock/api-test-pptr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/fraggle-rock/api-test-pptr.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/devtools-log-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/devtools-log-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/driver-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/driver-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/driver/dom-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/driver/dom-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/driver/prepare-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/driver/prepare-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/driver/storage-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/driver/storage-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/fake-driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/fake-driver.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/fetcher-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/fetcher-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/gather-runner-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/gather-runner-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/gather/mock-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/gather/mock-commands.js -------------------------------------------------------------------------------- /lighthouse-core/test/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/index-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/asset-saver-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/asset-saver-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/csp-evaluator-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/csp-evaluator-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/emulation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/emulation-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/i18n/i18n-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/i18n/i18n-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/i18n/locales-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/i18n/locales-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/i18n/swap-locale-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/i18n/swap-locale-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/icons-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/icons-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/manifest-parser-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/manifest-parser-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/median-run-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/median-run-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/minify-devtoolslog-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/minify-devtoolslog-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/minify-trace-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/minify-trace-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/navigation-error-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/navigation-error-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/network-recorder-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/network-recorder-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/network-request-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/network-request-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/page-functions-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/page-functions-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/proto-preprocessor-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/proto-preprocessor-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/rect-helpers-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/rect-helpers-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/sd-validation-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/sd-validation-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/sentry-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/sentry-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/stack-packs-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/stack-packs-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/statistics-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/statistics-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/tappable-rects-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/tappable-rects-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/third-party-web-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/third-party-web-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/timing-trace-saver-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/timing-trace-saver-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/lib/url-shim-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/lib/url-shim-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/results/sample-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/results/sample-config.js -------------------------------------------------------------------------------- /lighthouse-core/test/results/sample_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/results/sample_v2.json -------------------------------------------------------------------------------- /lighthouse-core/test/runner-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/runner-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/sample-json-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/sample-json-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/scoring-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/scoring-test.js -------------------------------------------------------------------------------- /lighthouse-core/test/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/test/test-utils.js -------------------------------------------------------------------------------- /lighthouse-core/util-commonjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-core/util-commonjs.js -------------------------------------------------------------------------------- /lighthouse-logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-logger/LICENSE -------------------------------------------------------------------------------- /lighthouse-logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-logger/README.md -------------------------------------------------------------------------------- /lighthouse-logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-logger/index.js -------------------------------------------------------------------------------- /lighthouse-logger/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-logger/package.json -------------------------------------------------------------------------------- /lighthouse-logger/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-logger/yarn.lock -------------------------------------------------------------------------------- /lighthouse-treemap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/README.md -------------------------------------------------------------------------------- /lighthouse-treemap/app/debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/app/debug.json -------------------------------------------------------------------------------- /lighthouse-treemap/app/images/lighthouse-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/app/images/lighthouse-logo.svg -------------------------------------------------------------------------------- /lighthouse-treemap/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/app/index.html -------------------------------------------------------------------------------- /lighthouse-treemap/app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/app/src/main.js -------------------------------------------------------------------------------- /lighthouse-treemap/app/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/app/src/util.js -------------------------------------------------------------------------------- /lighthouse-treemap/app/styles/treemap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/app/styles/treemap.css -------------------------------------------------------------------------------- /lighthouse-treemap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/package.json -------------------------------------------------------------------------------- /lighthouse-treemap/test/treemap-test-pptr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/test/treemap-test-pptr.js -------------------------------------------------------------------------------- /lighthouse-treemap/test/util-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/test/util-test.js -------------------------------------------------------------------------------- /lighthouse-treemap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/tsconfig.json -------------------------------------------------------------------------------- /lighthouse-treemap/types/treemap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-treemap/types/treemap.d.ts -------------------------------------------------------------------------------- /lighthouse-viewer/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/.eslintrc.cjs -------------------------------------------------------------------------------- /lighthouse-viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/README.md -------------------------------------------------------------------------------- /lighthouse-viewer/app/images/lh_favicon_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/images/lh_favicon_32px.png -------------------------------------------------------------------------------- /lighthouse-viewer/app/images/lh_favicon_76px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/images/lh_favicon_76px.png -------------------------------------------------------------------------------- /lighthouse-viewer/app/images/lighthouse-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/images/lighthouse-logo.svg -------------------------------------------------------------------------------- /lighthouse-viewer/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/index.html -------------------------------------------------------------------------------- /lighthouse-viewer/app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/manifest.json -------------------------------------------------------------------------------- /lighthouse-viewer/app/src/drag-and-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/src/drag-and-drop.js -------------------------------------------------------------------------------- /lighthouse-viewer/app/src/firebase-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/src/firebase-auth.js -------------------------------------------------------------------------------- /lighthouse-viewer/app/src/github-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/src/github-api.js -------------------------------------------------------------------------------- /lighthouse-viewer/app/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/src/main.js -------------------------------------------------------------------------------- /lighthouse-viewer/app/src/psi-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/src/psi-api.js -------------------------------------------------------------------------------- /lighthouse-viewer/app/src/viewer-ui-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/src/viewer-ui-features.js -------------------------------------------------------------------------------- /lighthouse-viewer/app/styles/viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/app/styles/viewer.css -------------------------------------------------------------------------------- /lighthouse-viewer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/package.json -------------------------------------------------------------------------------- /lighthouse-viewer/test/drag-and-drop-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/test/drag-and-drop-test.js -------------------------------------------------------------------------------- /lighthouse-viewer/test/test-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/test/test-helpers.js -------------------------------------------------------------------------------- /lighthouse-viewer/test/viewer-test-pptr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/test/viewer-test-pptr.js -------------------------------------------------------------------------------- /lighthouse-viewer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/tsconfig.json -------------------------------------------------------------------------------- /lighthouse-viewer/types/viewer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/lighthouse-viewer/types/viewer.d.ts -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/package.json -------------------------------------------------------------------------------- /proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/proto/README.md -------------------------------------------------------------------------------- /proto/lighthouse-result.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/proto/lighthouse-result.proto -------------------------------------------------------------------------------- /proto/scripts/json_roundtrip_via_proto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/proto/scripts/json_roundtrip_via_proto.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/readme.md -------------------------------------------------------------------------------- /report/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/.eslintrc.cjs -------------------------------------------------------------------------------- /report/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/README.md -------------------------------------------------------------------------------- /report/assets/standalone-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/assets/standalone-template.html -------------------------------------------------------------------------------- /report/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/assets/styles.css -------------------------------------------------------------------------------- /report/assets/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/assets/templates.html -------------------------------------------------------------------------------- /report/clients/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/clients/bundle.js -------------------------------------------------------------------------------- /report/clients/psi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/clients/psi.js -------------------------------------------------------------------------------- /report/clients/standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/clients/standalone.js -------------------------------------------------------------------------------- /report/generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/README.md -------------------------------------------------------------------------------- /report/generator/file-namer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/file-namer.js -------------------------------------------------------------------------------- /report/generator/flow-report-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/flow-report-assets.js -------------------------------------------------------------------------------- /report/generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/package.json -------------------------------------------------------------------------------- /report/generator/report-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/report-assets.js -------------------------------------------------------------------------------- /report/generator/report-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/report-generator.js -------------------------------------------------------------------------------- /report/generator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/generator/tsconfig.json -------------------------------------------------------------------------------- /report/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/package.json -------------------------------------------------------------------------------- /report/renderer/category-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/category-renderer.js -------------------------------------------------------------------------------- /report/renderer/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/components.js -------------------------------------------------------------------------------- /report/renderer/crc-details-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/crc-details-renderer.js -------------------------------------------------------------------------------- /report/renderer/details-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/details-renderer.js -------------------------------------------------------------------------------- /report/renderer/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/dom.js -------------------------------------------------------------------------------- /report/renderer/element-screenshot-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/element-screenshot-renderer.js -------------------------------------------------------------------------------- /report/renderer/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/i18n.js -------------------------------------------------------------------------------- /report/renderer/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/logger.js -------------------------------------------------------------------------------- /report/renderer/performance-category-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/performance-category-renderer.js -------------------------------------------------------------------------------- /report/renderer/pwa-category-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/pwa-category-renderer.js -------------------------------------------------------------------------------- /report/renderer/report-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/report-renderer.js -------------------------------------------------------------------------------- /report/renderer/report-ui-features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/report-ui-features.js -------------------------------------------------------------------------------- /report/renderer/snippet-renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/snippet-renderer.js -------------------------------------------------------------------------------- /report/renderer/text-encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/text-encoding.js -------------------------------------------------------------------------------- /report/renderer/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/renderer/util.js -------------------------------------------------------------------------------- /report/test-assets/faux-psi-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test-assets/faux-psi-template.html -------------------------------------------------------------------------------- /report/test-assets/faux-psi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test-assets/faux-psi.js -------------------------------------------------------------------------------- /report/test/clients/psi-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/clients/psi-test.js -------------------------------------------------------------------------------- /report/test/generator/file-namer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/generator/file-namer-test.js -------------------------------------------------------------------------------- /report/test/generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/generator/package.json -------------------------------------------------------------------------------- /report/test/generator/report-generator-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/generator/report-generator-test.js -------------------------------------------------------------------------------- /report/test/renderer/category-renderer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/category-renderer-test.js -------------------------------------------------------------------------------- /report/test/renderer/components-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/components-test.js -------------------------------------------------------------------------------- /report/test/renderer/crc-details-renderer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/crc-details-renderer-test.js -------------------------------------------------------------------------------- /report/test/renderer/details-renderer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/details-renderer-test.js -------------------------------------------------------------------------------- /report/test/renderer/dom-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/dom-test.js -------------------------------------------------------------------------------- /report/test/renderer/i18n-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/i18n-test.js -------------------------------------------------------------------------------- /report/test/renderer/pwa-category-renderer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/pwa-category-renderer-test.js -------------------------------------------------------------------------------- /report/test/renderer/report-renderer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/report-renderer-test.js -------------------------------------------------------------------------------- /report/test/renderer/report-ui-features-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/report-ui-features-test.js -------------------------------------------------------------------------------- /report/test/renderer/snippet-renderer-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/snippet-renderer-test.js -------------------------------------------------------------------------------- /report/test/renderer/text-encoding-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/text-encoding-test.js -------------------------------------------------------------------------------- /report/test/renderer/util-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/test/renderer/util-test.js -------------------------------------------------------------------------------- /report/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/tsconfig.json -------------------------------------------------------------------------------- /report/types/augment-dom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/types/augment-dom.d.ts -------------------------------------------------------------------------------- /report/types/buffer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/types/buffer.d.ts -------------------------------------------------------------------------------- /report/types/html-renderer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/types/html-renderer.d.ts -------------------------------------------------------------------------------- /report/types/report-result.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/report/types/report-result.d.ts -------------------------------------------------------------------------------- /root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/root.js -------------------------------------------------------------------------------- /third-party/chromium-webtests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/third-party/chromium-webtests/README.md -------------------------------------------------------------------------------- /third-party/download-content-shell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/third-party/download-content-shell/LICENSE -------------------------------------------------------------------------------- /third-party/download-content-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/third-party/download-content-shell/README.md -------------------------------------------------------------------------------- /third-party/download-content-shell/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/third-party/download-content-shell/utils.js -------------------------------------------------------------------------------- /third-party/snyk/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/third-party/snyk/snapshot.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/artifacts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/artifacts.d.ts -------------------------------------------------------------------------------- /types/audit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/audit.d.ts -------------------------------------------------------------------------------- /types/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/config.d.ts -------------------------------------------------------------------------------- /types/cssstyle/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/cssstyle/index.d.ts -------------------------------------------------------------------------------- /types/enquirer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/enquirer.d.ts -------------------------------------------------------------------------------- /types/externs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/externs.d.ts -------------------------------------------------------------------------------- /types/gatherer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/gatherer.d.ts -------------------------------------------------------------------------------- /types/global-lh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/global-lh.d.ts -------------------------------------------------------------------------------- /types/http-link-header/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/http-link-header/index.d.ts -------------------------------------------------------------------------------- /types/jest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/jest.d.ts -------------------------------------------------------------------------------- /types/jsonld/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/jsonld/index.d.ts -------------------------------------------------------------------------------- /types/jsonlint-mod.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/jsonlint-mod.d.ts -------------------------------------------------------------------------------- /types/lhr/audit-details.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/audit-details.d.ts -------------------------------------------------------------------------------- /types/lhr/audit-result.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/audit-result.d.ts -------------------------------------------------------------------------------- /types/lhr/budget.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/budget.d.ts -------------------------------------------------------------------------------- /types/lhr/flow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/flow.d.ts -------------------------------------------------------------------------------- /types/lhr/i18n.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/i18n.d.ts -------------------------------------------------------------------------------- /types/lhr/lhr.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/lhr.d.ts -------------------------------------------------------------------------------- /types/lhr/settings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/settings.d.ts -------------------------------------------------------------------------------- /types/lhr/treemap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/treemap.d.ts -------------------------------------------------------------------------------- /types/lhr/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lhr/tsconfig.json -------------------------------------------------------------------------------- /types/lighthouse-logger/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lighthouse-logger/index.d.ts -------------------------------------------------------------------------------- /types/lookup-closest-locale/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/lookup-closest-locale/index.d.ts -------------------------------------------------------------------------------- /types/metaviewport-parser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/metaviewport-parser/index.d.ts -------------------------------------------------------------------------------- /types/node-fetch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/node-fetch.d.ts -------------------------------------------------------------------------------- /types/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/node.d.ts -------------------------------------------------------------------------------- /types/parse-cache-control/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/parse-cache-control/index.d.ts -------------------------------------------------------------------------------- /types/pretty-json-stringify/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/pretty-json-stringify/index.d.ts -------------------------------------------------------------------------------- /types/protocol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/protocol.d.ts -------------------------------------------------------------------------------- /types/query-selector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/query-selector.d.ts -------------------------------------------------------------------------------- /types/robots-parser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/robots-parser/index.d.ts -------------------------------------------------------------------------------- /types/smokehouse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/smokehouse.d.ts -------------------------------------------------------------------------------- /types/structured-data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/types/structured-data.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satya-nutella/lighthouse/HEAD/yarn.lock --------------------------------------------------------------------------------