2016-06-15 21:37:52 +03:00
|
|
|
{
|
|
|
|
"name": "lighthouse",
|
2018-11-15 05:21:27 +03:00
|
|
|
"version": "4.0.0-alpha.1",
|
2016-06-15 21:37:52 +03:00
|
|
|
"description": "Lighthouse",
|
2016-07-11 15:36:50 +03:00
|
|
|
"main": "./lighthouse-core/index.js",
|
2016-09-21 03:09:05 +03:00
|
|
|
"bin": {
|
|
|
|
"lighthouse": "./lighthouse-cli/index.js",
|
2018-04-10 21:04:54 +03:00
|
|
|
"chrome-debug": "./lighthouse-core/scripts/manual-chrome-launcher.js"
|
2016-09-21 03:09:05 +03:00
|
|
|
},
|
2016-06-15 21:37:52 +03:00
|
|
|
"engines": {
|
2018-09-24 22:16:39 +03:00
|
|
|
"node": ">=8.10"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-06-05 21:23:58 +03:00
|
|
|
"build-all": "npm-run-posix-or-windows build-all:task",
|
2018-10-26 02:11:04 +03:00
|
|
|
"build-all:task": "yarn build-extension & yarn build-devtools & yarn build-lr & yarn build-viewer & wait",
|
|
|
|
"build-all:task:windows": "yarn build-extension && yarn build-devtools && yarn build-lr && yarn build-viewer",
|
|
|
|
"build-extension": "node ./build/build-extension.js",
|
|
|
|
"build-devtools": "node ./build/build-bundle.js clients/devtools-entry.js dist/lighthouse-dt-bundle.js",
|
|
|
|
"build-lr": "node ./build/build-bundle.js clients/lightrider-entry.js dist/lighthouse-lr-bundle.js",
|
2018-10-31 04:12:21 +03:00
|
|
|
"build-viewer": "node ./build/build-viewer.js",
|
2018-10-26 02:11:04 +03:00
|
|
|
"clean": "rimraf dist proto/scripts/*.json proto/scripts/*_pb2.* proto/scripts/*_pb.* proto/scripts/__pycache__ proto/scripts/*.pyc *.report.html *.report.dom.html *.report.json *.devtoolslog.json *.trace.json || true",
|
2016-12-14 03:49:28 +03:00
|
|
|
"lint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .",
|
2018-04-11 04:26:24 +03:00
|
|
|
"smoke": "node lighthouse-cli/test/smokehouse/run-smoke.js",
|
2018-01-03 00:58:44 +03:00
|
|
|
"debug": "node --inspect-brk ./lighthouse-cli/index.js",
|
2017-06-29 00:07:42 +03:00
|
|
|
"start": "node ./lighthouse-cli/index.js",
|
2018-07-02 20:18:39 +03:00
|
|
|
"test": "yarn diff:sample-json && yarn lint --quiet && yarn unit && yarn type-check",
|
2018-10-26 02:11:04 +03:00
|
|
|
"test-clients": "mocha \"clients/test/**/*-test.js\"",
|
2018-10-31 04:12:21 +03:00
|
|
|
"test-viewer": "yarn unit-viewer && mocha lighthouse-viewer/test/viewer-test-pptr.js",
|
2018-06-16 02:29:28 +03:00
|
|
|
"test-lantern": "bash lighthouse-core/scripts/test-lantern.sh",
|
2018-06-29 04:45:18 +03:00
|
|
|
"unit-core": "jest \"lighthouse-core/\"",
|
|
|
|
"unit-core:ci": "jest --runInBand --coverage --ci \"lighthouse-core/\"",
|
|
|
|
"unit-cli": "jest --runInBand \"lighthouse-cli/\"",
|
|
|
|
"unit-cli:ci": "jest --runInBand --coverage --ci \"lighthouse-cli/\"",
|
2018-04-06 01:50:50 +03:00
|
|
|
"unit-viewer": "mocha --reporter dot \"lighthouse-viewer/test/**/*-test.js\"",
|
|
|
|
"unit": "yarn unit-core && yarn unit-cli && yarn unit-viewer",
|
2018-06-29 04:45:18 +03:00
|
|
|
"unit:ci": "yarn unit-core:ci && yarn unit-cli:ci && yarn unit-viewer",
|
2017-05-02 04:03:30 +03:00
|
|
|
"core-unit": "yarn unit-core",
|
|
|
|
"cli-unit": "yarn unit-cli",
|
|
|
|
"viewer-unit": "yarn unit-viewer",
|
2018-04-06 01:50:50 +03:00
|
|
|
"watch": "yarn unit-core --watch",
|
2018-06-29 04:45:18 +03:00
|
|
|
"unit:silentcoverage": "nyc --silent yarn unit:ci && nyc report --reporter text-lcov > unit-coverage.lcov",
|
|
|
|
"coverage": "nyc yarn unit:ci && nyc report --reporter html",
|
2018-04-14 05:30:08 +03:00
|
|
|
"smoke:silentcoverage": "nyc --silent yarn smoke && nyc report --reporter text-lcov > smoke-coverage.lcov",
|
|
|
|
"coverage:smoke": "nyc yarn smoke && nyc report --reporter html",
|
|
|
|
"coveralls": "cat unit-coverage.lcov | coveralls",
|
|
|
|
"codecov": "codecov -f unit-coverage.lcov -F unit && codecov -f smoke-coverage.lcov -F smoke",
|
2017-04-14 04:52:25 +03:00
|
|
|
"devtools": "bash lighthouse-core/scripts/roll-to-devtools.sh",
|
2017-05-02 02:46:13 +03:00
|
|
|
"compile-devtools": "bash lighthouse-core/scripts/compile-against-devtools.sh",
|
2018-04-10 21:04:54 +03:00
|
|
|
"chrome": "node lighthouse-core/scripts/manual-chrome-launcher.js",
|
2018-04-20 21:08:08 +03:00
|
|
|
"fast": "yarn start --disable-device-emulation --throttlingMethod=provided",
|
2018-10-31 04:12:21 +03:00
|
|
|
"deploy-viewer": "yarn build-viewer --deploy",
|
2017-07-12 00:23:18 +03:00
|
|
|
"bundlesize": "bundlesize",
|
2018-10-25 21:15:54 +03:00
|
|
|
"plots-smoke": "bash plots/test/smoke.sh",
|
|
|
|
"timing-trace": "node lighthouse-core/scripts/generate-timing-trace.js",
|
2017-11-21 05:10:03 +03:00
|
|
|
"changelog": "conventional-changelog --config ./build/changelog-generator/index.js --infile changelog.md --same-file",
|
2018-10-31 04:12:21 +03:00
|
|
|
"type-check": "tsc -p . && tsc -p lighthouse-viewer/",
|
2018-07-19 20:15:27 +03:00
|
|
|
"i18n:checks": "./lighthouse-core/scripts/i18n/assert-strings-collected.sh",
|
|
|
|
"i18n:collect-strings": "node lighthouse-core/scripts/i18n/collect-strings.js",
|
2018-03-21 23:26:17 +03:00
|
|
|
"update:sample-artifacts": "node lighthouse-core/scripts/update-report-fixtures.js -G",
|
2018-10-27 00:55:30 +03:00
|
|
|
"update:sample-json": "yarn i18n:collect-strings && node ./lighthouse-cli -A=./lighthouse-core/test/results/artifacts --throttling-method=devtools --output=json --output-path=./lighthouse-core/test/results/sample_v2.json && node lighthouse-core/scripts/cleanup-LHR-for-diff.js ./lighthouse-core/test/results/sample_v2.json --only-remove-timing && yarn compile-proto && yarn build-proto-roundtrip",
|
2018-07-26 23:35:56 +03:00
|
|
|
"diff:sample-json": "yarn i18n:checks && bash lighthouse-core/scripts/assert-golden-lhr-unchanged.sh",
|
2018-08-23 03:00:01 +03:00
|
|
|
"ultradumbBenchmark": "./lighthouse-core/scripts/benchmark.js",
|
2018-06-20 21:19:07 +03:00
|
|
|
"mixed-content": "./lighthouse-cli/index.js --chrome-flags='--headless' --preset=mixed-content",
|
2018-10-16 22:00:24 +03:00
|
|
|
"minify-latest-run": "./lighthouse-core/scripts/lantern/minify-trace.js ./latest-run/defaultPass.trace.json ./latest-run/defaultPass.trace.min.json && ./lighthouse-core/scripts/lantern/minify-devtoolslog.js ./latest-run/defaultPass.devtoolslog.json ./latest-run/defaultPass.devtoolslog.min.json",
|
|
|
|
"compile-proto": "protoc --python_out=./ ./proto/lighthouse-result.proto && mv ./proto/*_pb2.py ./proto/scripts",
|
2018-10-27 00:55:30 +03:00
|
|
|
"build-proto-roundtrip": "cd proto/scripts && PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=cpp PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION_VERSION=2 python json_roundtrip_via_proto.py"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-10-31 04:12:21 +03:00
|
|
|
"@firebase/app-types": "0.3.1",
|
|
|
|
"@firebase/auth-types": "0.3.2",
|
|
|
|
"@firebase/util": "0.2.1",
|
2018-10-19 02:44:48 +03:00
|
|
|
"@types/archiver": "^2.1.2",
|
|
|
|
"@types/babel-core": "^6.25.5",
|
|
|
|
"@types/browserify": "^12.0.36",
|
2018-03-13 02:17:46 +03:00
|
|
|
"@types/chrome": "^0.0.60",
|
2017-11-21 05:10:03 +03:00
|
|
|
"@types/configstore": "^2.1.1",
|
2018-10-19 02:44:48 +03:00
|
|
|
"@types/cpy": "^5.1.0",
|
2018-04-28 04:51:29 +03:00
|
|
|
"@types/css-font-loading-module": "^0.0.2",
|
2018-07-27 02:02:02 +03:00
|
|
|
"@types/esprima": "^4.0.2",
|
2018-10-31 04:12:21 +03:00
|
|
|
"@types/gh-pages": "^2.0.0",
|
|
|
|
"@types/google.analytics": "0.0.39",
|
2017-11-21 05:10:03 +03:00
|
|
|
"@types/inquirer": "^0.0.35",
|
2018-07-18 02:35:18 +03:00
|
|
|
"@types/intl-messageformat": "^1.3.0",
|
2018-05-02 23:35:57 +03:00
|
|
|
"@types/jpeg-js": "^0.3.0",
|
2018-04-13 20:56:21 +03:00
|
|
|
"@types/lodash.isequal": "^4.5.2",
|
2018-10-19 02:44:48 +03:00
|
|
|
"@types/make-dir": "^1.0.3",
|
2017-11-21 05:10:03 +03:00
|
|
|
"@types/node": "*",
|
|
|
|
"@types/opn": "^3.0.28",
|
2018-09-08 03:36:01 +03:00
|
|
|
"@types/raven": "^2.5.1",
|
2018-04-30 23:09:41 +03:00
|
|
|
"@types/semver": "^5.5.0",
|
2018-10-31 04:12:21 +03:00
|
|
|
"@types/uglify-es": "^3.0.0",
|
2017-11-21 05:10:03 +03:00
|
|
|
"@types/update-notifier": "^1.0.2",
|
2018-03-13 02:17:46 +03:00
|
|
|
"@types/ws": "^4.0.1",
|
2017-11-21 05:10:03 +03:00
|
|
|
"@types/yargs": "^8.0.2",
|
2018-09-29 07:15:33 +03:00
|
|
|
"angular": "^1.7.4",
|
2018-10-19 02:44:48 +03:00
|
|
|
"archiver": "^3.0.0",
|
2018-04-12 01:02:03 +03:00
|
|
|
"babel-core": "^6.26.0",
|
2018-10-19 02:44:48 +03:00
|
|
|
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
|
|
|
|
"brfs": "^1.6.1",
|
|
|
|
"browserify": "^16.2.3",
|
2017-09-22 23:39:39 +03:00
|
|
|
"bundlesize": "^0.14.4",
|
2018-06-19 04:57:53 +03:00
|
|
|
"chalk": "^2.4.1",
|
2017-06-20 07:20:26 +03:00
|
|
|
"codecov": "^2.2.0",
|
2017-10-11 20:32:34 +03:00
|
|
|
"commitizen": "^2.9.6",
|
2017-11-11 16:33:12 +03:00
|
|
|
"conventional-changelog-cli": "^1.3.4",
|
2016-07-25 23:12:36 +03:00
|
|
|
"coveralls": "^2.11.9",
|
2018-10-19 02:44:48 +03:00
|
|
|
"cpy": "^7.0.1",
|
2018-04-10 01:40:15 +03:00
|
|
|
"csv-validator": "^0.0.3",
|
2017-10-11 20:32:34 +03:00
|
|
|
"cz-customizable": "^5.2.0",
|
2018-09-01 03:59:19 +03:00
|
|
|
"devtools-protocol": "0.0.588129",
|
2018-04-11 02:44:46 +03:00
|
|
|
"eslint": "^4.19.1",
|
2017-10-12 02:26:40 +03:00
|
|
|
"eslint-config-google": "^0.9.1",
|
2018-11-02 22:03:26 +03:00
|
|
|
"gh-pages": "^2.0.1",
|
2018-10-31 04:12:21 +03:00
|
|
|
"glob": "^7.1.3",
|
2016-10-01 03:59:29 +03:00
|
|
|
"gulp": "^3.9.1",
|
2016-07-25 23:12:36 +03:00
|
|
|
"gulp-replace": "^0.5.4",
|
|
|
|
"gulp-util": "^3.0.7",
|
2018-10-31 04:12:21 +03:00
|
|
|
"idb-keyval": "2.2.0",
|
2018-07-18 02:35:18 +03:00
|
|
|
"intl": "^1.2.5",
|
2018-10-23 19:35:21 +03:00
|
|
|
"jest": "^23.6.0",
|
2018-10-31 01:17:21 +03:00
|
|
|
"jsdom": "^12.2.0",
|
2018-10-19 02:44:48 +03:00
|
|
|
"make-dir": "^1.3.0",
|
2017-01-31 11:59:52 +03:00
|
|
|
"mocha": "^3.2.0",
|
2017-06-05 21:23:58 +03:00
|
|
|
"npm-run-posix-or-windows": "^2.0.2",
|
2018-04-06 01:50:50 +03:00
|
|
|
"nyc": "^11.6.0",
|
2018-10-19 02:44:48 +03:00
|
|
|
"package-json-versionify": "^1.0.4",
|
2018-03-20 21:39:02 +03:00
|
|
|
"postinstall-prepare": "^1.0.1",
|
2018-10-23 19:35:21 +03:00
|
|
|
"prettier": "^1.14.3",
|
2018-05-18 21:41:01 +03:00
|
|
|
"pretty-json-stringify": "^0.0.2",
|
2018-11-07 04:39:53 +03:00
|
|
|
"puppeteer": "^1.10.0",
|
2018-01-05 23:17:11 +03:00
|
|
|
"sinon": "^2.3.5",
|
2018-10-13 03:56:12 +03:00
|
|
|
"typescript": "3.1.3",
|
2018-10-31 04:12:21 +03:00
|
|
|
"uglify-es": "3.0.15",
|
|
|
|
"url-search-params": "0.6.1",
|
|
|
|
"whatwg-fetch": "2.0.1",
|
2016-12-20 02:29:00 +03:00
|
|
|
"zone.js": "^0.7.3"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-03-03 01:29:28 +03:00
|
|
|
"axe-core": "3.0.0-beta.2",
|
2018-09-26 20:36:43 +03:00
|
|
|
"chrome-launcher": "^0.10.5",
|
2017-10-27 03:01:03 +03:00
|
|
|
"configstore": "^3.1.1",
|
2018-09-22 21:46:41 +03:00
|
|
|
"cssstyle": "1.1.1",
|
2018-11-19 23:18:01 +03:00
|
|
|
"details-element-polyfill": "2.1.1",
|
2018-07-27 02:02:02 +03:00
|
|
|
"esprima": "^4.0.1",
|
2017-11-29 05:18:28 +03:00
|
|
|
"http-link-header": "^0.8.0",
|
2017-10-27 03:01:03 +03:00
|
|
|
"inquirer": "^3.3.0",
|
2018-07-18 02:35:18 +03:00
|
|
|
"intl-messageformat": "^2.2.0",
|
|
|
|
"intl-messageformat-parser": "^1.4.0",
|
2017-05-16 00:03:24 +03:00
|
|
|
"jpeg-js": "0.1.2",
|
2018-09-25 07:40:03 +03:00
|
|
|
"js-library-detector": "^5.1.0",
|
2018-10-25 21:15:54 +03:00
|
|
|
"lighthouse-logger": "^1.2.0",
|
2018-02-08 21:57:28 +03:00
|
|
|
"lodash.isequal": "^4.5.0",
|
2018-07-31 00:47:19 +03:00
|
|
|
"lookup-closest-locale": "6.0.4",
|
2018-01-30 02:53:19 +03:00
|
|
|
"metaviewport-parser": "0.2.0",
|
2017-01-24 02:44:03 +03:00
|
|
|
"mkdirp": "0.5.1",
|
|
|
|
"opn": "4.0.2",
|
2017-11-18 02:42:14 +03:00
|
|
|
"parse-cache-control": "1.0.1",
|
2017-10-27 03:01:03 +03:00
|
|
|
"raven": "^2.2.1",
|
2017-07-05 20:18:21 +03:00
|
|
|
"rimraf": "^2.6.1",
|
2018-03-29 02:40:38 +03:00
|
|
|
"robots-parser": "^2.0.1",
|
2017-09-30 01:53:49 +03:00
|
|
|
"semver": "^5.3.0",
|
2018-09-20 20:25:27 +03:00
|
|
|
"speedline-core": "1.4.2",
|
2017-03-25 04:11:53 +03:00
|
|
|
"update-notifier": "^2.1.0",
|
2017-11-30 03:57:53 +03:00
|
|
|
"ws": "3.3.2",
|
2017-10-05 01:14:57 +03:00
|
|
|
"yargs": "3.32.0",
|
|
|
|
"yargs-parser": "7.0.0"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
2017-11-21 05:10:03 +03:00
|
|
|
"resolutions": {
|
|
|
|
"chrome-launcher/@types/node": "*"
|
|
|
|
},
|
2017-02-10 19:46:20 +03:00
|
|
|
"repository": "GoogleChrome/lighthouse",
|
2016-06-15 21:37:52 +03:00
|
|
|
"keywords": [
|
|
|
|
"google",
|
|
|
|
"chrome",
|
|
|
|
"devtools"
|
|
|
|
],
|
|
|
|
"author": "The Chromium Authors",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"bugs": {
|
2017-02-10 19:46:20 +03:00
|
|
|
"url": "https://github.com/GoogleChrome/lighthouse/issues"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
2017-07-12 00:23:18 +03:00
|
|
|
"bundlesize": [
|
|
|
|
{
|
2018-10-26 02:11:04 +03:00
|
|
|
"path": "./dist/extension/scripts/lighthouse-ext-bundle.js",
|
2018-09-19 11:31:50 +03:00
|
|
|
"threshold": "520 Kb"
|
2017-07-12 00:23:18 +03:00
|
|
|
},
|
|
|
|
{
|
2018-10-31 04:12:21 +03:00
|
|
|
"path": "./dist/viewer/src/viewer.js",
|
2018-03-09 05:45:19 +03:00
|
|
|
"threshold": "65 Kb"
|
2017-07-12 00:23:18 +03:00
|
|
|
}
|
|
|
|
],
|
2018-04-06 01:50:50 +03:00
|
|
|
"nyc": {
|
2018-07-27 02:02:02 +03:00
|
|
|
"reporter": [
|
|
|
|
"lcov",
|
|
|
|
"text"
|
|
|
|
],
|
2018-06-29 04:45:18 +03:00
|
|
|
"tempDirectory": "./coverage",
|
2018-04-06 01:50:50 +03:00
|
|
|
"exclude": [
|
|
|
|
"**/third_party/**",
|
|
|
|
"**/test/",
|
2018-10-26 02:11:04 +03:00
|
|
|
"clients/"
|
2018-04-06 01:50:50 +03:00
|
|
|
]
|
|
|
|
},
|
2017-10-11 20:32:34 +03:00
|
|
|
"homepage": "https://github.com/GoogleChrome/lighthouse#readme",
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-customizable"
|
|
|
|
},
|
|
|
|
"cz-customizable": {
|
|
|
|
"config": "./.cz-config.js"
|
|
|
|
}
|
|
|
|
}
|
2016-06-15 21:37:52 +03:00
|
|
|
}
|