lighthouse

v1.6.3
Lighthouse
google chrome devtools

fast

npm run start -- --disable-device-emulation --disable-cpu-throttling --disable-network-throttling

lint

[ "$CI" = true ] && eslint --quiet -f codeframe . || eslint .

test

npm run lint --silent && npm run unit

unit

bash lighthouse-core/scripts/run-mocha.sh --default

smoke

bash lighthouse-cli/test/smokehouse/offline-local/run-tests.sh && bash lighthouse-cli/test/smokehouse/dobetterweb/run-tests.sh && bash lighthouse-cli/test/smokehouse/byte-efficiency/run-tests.sh

start

node ./lighthouse-cli/index.js

watch

bash lighthouse-core/scripts/run-mocha.sh --watch

chrome

node ./lighthouse-cli/manual-chrome-launcher.js

closure

cd lighthouse-core && node closure/closure-type-checking.js

cli-unit

bash lighthouse-core/scripts/run-mocha.sh --cli

coverage

node $(npm bin)/istanbul cover -x "**/third_party/**" _mocha -- $(find */test -name '*-test.js') --timeout 10000 --reporter progress

build-all

npm run build-cli && npm run build-extension && npm run build-viewer

build-cli

cd ./lighthouse-cli && npm run build

core-unit

bash lighthouse-core/scripts/run-mocha.sh --core

coveralls

npm run coverage && cat ./coverage/lcov.info | coveralls

smokehouse

node lighthouse-cli/test/smokehouse/smokehouse.js

install-all

npm run install-cli && npm run install-extension && npm run install-viewer

install-cli

cd ./lighthouse-cli && npm install

viewer-unit

bash lighthouse-core/scripts/run-mocha.sh --viewer

build-viewer

cd ./lighthouse-viewer && npm run build

deploy-viewer

cd lighthouse-viewer && gulp deploy

install-viewer

cd ./lighthouse-viewer && npm install

build-extension

cd ./lighthouse-extension && npm run build

install-extension

cd ./lighthouse-extension && npm install

Metadata

Downloads