2016-06-15 21:37:52 +03:00
|
|
|
{
|
|
|
|
"name": "lighthouse",
|
2017-08-15 02:42:51 +03:00
|
|
|
"version": "2.4.0",
|
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",
|
2017-05-15 00:01:43 +03:00
|
|
|
"chrome-debug": "./chrome-launcher/manual-chrome-launcher.js"
|
2016-09-21 03:09:05 +03:00
|
|
|
},
|
2016-06-15 21:37:52 +03:00
|
|
|
"engines": {
|
2017-01-25 02:39:47 +03:00
|
|
|
"node": ">=6"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-06-05 21:23:58 +03:00
|
|
|
"install-all": "npm-run-posix-or-windows install-all:task",
|
|
|
|
"install-all:task": "yarn & yarn install-launcher & yarn install-cli & yarn install-extension & yarn install-viewer & wait",
|
|
|
|
"install-all:task:windows": "yarn && yarn install-launcher && yarn install-cli && yarn install-extension && yarn install-viewer",
|
2017-05-14 01:40:33 +03:00
|
|
|
"install-launcher": "cd ./chrome-launcher && yarn install && yarn build",
|
2017-04-22 20:51:06 +03:00
|
|
|
"install-cli": "cd ./lighthouse-cli && yarn install && yarn build",
|
|
|
|
"install-extension": "cd ./lighthouse-extension && yarn install",
|
|
|
|
"install-viewer": "cd ./lighthouse-viewer && yarn install",
|
2017-06-05 21:23:58 +03:00
|
|
|
"build-all": "npm-run-posix-or-windows build-all:task",
|
2017-06-29 00:07:42 +03:00
|
|
|
"build-all:task": "yarn build-launcher & yarn build-cli & yarn build-extension & yarn build-viewer & wait",
|
|
|
|
"build-all:task:windows": "yarn build-launcher && yarn build-cli && yarn build-extension && yarn build-viewer",
|
2017-04-26 22:41:01 +03:00
|
|
|
"build-cli": "cd ./lighthouse-cli && yarn build",
|
2017-05-14 01:40:33 +03:00
|
|
|
"build-launcher": "cd ./chrome-launcher && yarn build",
|
2017-04-26 22:41:01 +03:00
|
|
|
"build-extension": "cd ./lighthouse-extension && yarn build",
|
|
|
|
"build-viewer": "cd ./lighthouse-viewer && yarn build",
|
2017-04-08 02:06:18 +03:00
|
|
|
"clean": "rimraf *.report.html *.report.dom.html *.report.json *.screenshots.html *.devtoolslog.json *.trace.json || true",
|
2016-12-14 03:49:28 +03:00
|
|
|
"lint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .",
|
2017-09-13 00:35:33 +03:00
|
|
|
"smoke": "bash lighthouse-cli/test/smokehouse/offline-local/run-tests.sh && bash lighthouse-cli/test/smokehouse/perf/run-tests.sh && bash lighthouse-cli/test/smokehouse/dobetterweb/run-tests.sh && bash lighthouse-cli/test/smokehouse/byte-efficiency/run-tests.sh && bash lighthouse-cli/test/smokehouse/tricky-ttci/run-tests.sh && bash lighthouse-cli/test/smokehouse/seo/run-tests.sh",
|
2017-06-20 07:20:26 +03:00
|
|
|
"coverage": "istanbul cover -x \"**/third_party/**\" _mocha -- $(find */test -name '*-test.js') --timeout 10000 --reporter progress --report lcovonly",
|
2017-06-29 00:07:42 +03:00
|
|
|
"start": "node ./lighthouse-cli/index.js",
|
|
|
|
"test": "yarn lint --silent && yarn unit && yarn closure && yarn test-cli-formatting && yarn test-launcher-formatting",
|
2017-05-02 04:03:30 +03:00
|
|
|
"unit-core": "bash lighthouse-core/scripts/run-mocha.sh --core",
|
|
|
|
"unit-cli": "bash lighthouse-core/scripts/run-mocha.sh --cli",
|
|
|
|
"unit-viewer": "bash lighthouse-core/scripts/run-mocha.sh --viewer",
|
2017-05-14 01:40:33 +03:00
|
|
|
"unit-launcher": "bash lighthouse-core/scripts/run-mocha.sh --launcher",
|
2017-01-25 07:49:40 +03:00
|
|
|
"unit": "bash lighthouse-core/scripts/run-mocha.sh --default",
|
2017-05-14 01:40:33 +03:00
|
|
|
"test-cli-formatting": "cd lighthouse-cli && ./test/check-formatting.sh && cd ..",
|
|
|
|
"test-launcher-formatting": "cd chrome-launcher && ./test/check-formatting.sh && cd ..",
|
|
|
|
"launcher-unit": "yarn unit-launcher",
|
2017-05-02 04:03:30 +03:00
|
|
|
"core-unit": "yarn unit-core",
|
|
|
|
"cli-unit": "yarn unit-cli",
|
|
|
|
"viewer-unit": "yarn unit-viewer",
|
2017-01-25 07:49:40 +03:00
|
|
|
"closure": "cd lighthouse-core && node closure/closure-type-checking.js",
|
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",
|
2017-01-25 07:49:40 +03:00
|
|
|
"watch": "bash lighthouse-core/scripts/run-mocha.sh --watch",
|
2017-05-26 20:31:34 +03:00
|
|
|
"chrome": "node chrome-launcher/manual-chrome-launcher.js",
|
2017-04-26 22:41:01 +03:00
|
|
|
"fast": "yarn start -- --disable-device-emulation --disable-cpu-throttling --disable-network-throttling",
|
2017-01-25 02:39:47 +03:00
|
|
|
"smokehouse": "node lighthouse-cli/test/smokehouse/smokehouse.js",
|
2017-06-13 22:11:19 +03:00
|
|
|
"deploy-viewer": "cd lighthouse-viewer && gulp deploy",
|
2017-07-12 00:23:18 +03:00
|
|
|
"bundlesize": "bundlesize",
|
2017-06-13 22:11:19 +03:00
|
|
|
"plots-smoke": "bash plots/test/smoke.sh"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-10-19 15:50:52 +03:00
|
|
|
"@types/node": "^6.0.45",
|
2016-10-01 03:59:29 +03:00
|
|
|
"babel-core": "^6.16.0",
|
2017-09-22 23:39:39 +03:00
|
|
|
"bundlesize": "^0.14.4",
|
2017-06-20 07:20:26 +03:00
|
|
|
"codecov": "^2.2.0",
|
2016-07-25 23:12:36 +03:00
|
|
|
"coveralls": "^2.11.9",
|
2016-12-14 03:49:28 +03:00
|
|
|
"eslint": "^3.12.0",
|
|
|
|
"eslint-config-google": "^0.7.1",
|
2017-06-23 01:55:19 +03:00
|
|
|
"google-closure-compiler": "^20170521.0.0",
|
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",
|
2016-06-15 21:37:52 +03:00
|
|
|
"istanbul": "^0.4.3",
|
2017-04-08 02:54:57 +03:00
|
|
|
"jsdom": "^9.12.0",
|
2017-06-18 23:16:02 +03:00
|
|
|
"lcov-result-merger": "^1.2.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",
|
2016-12-20 02:29:00 +03:00
|
|
|
"zone.js": "^0.7.3"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2017-09-13 23:39:33 +03:00
|
|
|
"axe-core": "2.4.1",
|
2016-10-01 04:09:42 +03:00
|
|
|
"chrome-devtools-frontend": "1.0.422034",
|
2016-07-25 23:12:36 +03:00
|
|
|
"devtools-timeline-model": "1.1.6",
|
2017-05-16 00:03:24 +03:00
|
|
|
"jpeg-js": "0.1.2",
|
2017-01-24 02:44:03 +03:00
|
|
|
"json-stringify-safe": "5.0.1",
|
2017-06-20 04:30:12 +03:00
|
|
|
"lighthouse-logger": "^1.0.0",
|
2017-08-07 22:39:58 +03:00
|
|
|
"metaviewport-parser": "0.1.0",
|
2017-01-24 02:44:03 +03:00
|
|
|
"mkdirp": "0.5.1",
|
|
|
|
"opn": "4.0.2",
|
2017-07-05 20:18:21 +03:00
|
|
|
"rimraf": "^2.6.1",
|
2017-05-11 22:10:37 +03:00
|
|
|
"speedline": "1.2.0",
|
2017-03-25 04:11:53 +03:00
|
|
|
"update-notifier": "^2.1.0",
|
2017-01-24 02:44:03 +03:00
|
|
|
"whatwg-url": "4.0.0",
|
|
|
|
"ws": "1.1.1",
|
2017-02-16 03:07:25 +03:00
|
|
|
"yargs": "3.32.0"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
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": [
|
|
|
|
{
|
|
|
|
"path": "./lighthouse-extension/dist/scripts/lighthouse-background.js",
|
|
|
|
"threshold": "400 Kb"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"path": "./lighthouse-viewer/dist/src/viewer.js",
|
|
|
|
"threshold": "60 Kb"
|
|
|
|
}
|
|
|
|
],
|
2017-02-10 19:46:20 +03:00
|
|
|
"homepage": "https://github.com/GoogleChrome/lighthouse#readme"
|
2016-06-15 21:37:52 +03:00
|
|
|
}
|