2016-06-15 21:37:52 +03:00
|
|
|
{
|
|
|
|
"name": "lighthouse",
|
2017-03-04 03:22:26 +03:00
|
|
|
"version": "1.6.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",
|
2016-11-03 23:32:42 +03:00
|
|
|
"chrome-debug": "./lighthouse-cli/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-01-12 13:28:53 +03:00
|
|
|
"install-all": "npm run install-cli && npm run install-extension && npm run install-viewer",
|
2017-01-25 22:48:11 +03:00
|
|
|
"install-cli": "cd ./lighthouse-cli && npm install",
|
|
|
|
"install-extension": "cd ./lighthouse-extension && npm install",
|
|
|
|
"install-viewer": "cd ./lighthouse-viewer && npm install",
|
2017-01-12 13:28:53 +03:00
|
|
|
"build-all": "npm run build-cli && npm run build-extension && npm run build-viewer",
|
2017-01-25 22:48:11 +03:00
|
|
|
"build-cli": "cd ./lighthouse-cli && npm run build",
|
|
|
|
"build-extension": "cd ./lighthouse-extension && npm run build",
|
|
|
|
"build-viewer": "cd ./lighthouse-viewer && npm run build",
|
2016-12-14 03:49:28 +03:00
|
|
|
"lint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe . || eslint .",
|
2017-02-15 03:43:16 +03:00
|
|
|
"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",
|
2017-01-25 02:39:47 +03:00
|
|
|
"coverage": "node $(npm bin)/istanbul cover -x \"**/third_party/**\" _mocha -- $(find */test -name '*-test.js') --timeout 10000 --reporter progress",
|
2016-06-15 21:37:52 +03:00
|
|
|
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
|
|
|
|
"start": "node ./lighthouse-cli/index.js",
|
2016-09-23 12:46:57 +03:00
|
|
|
"test": "npm run lint --silent && npm run unit",
|
2017-01-25 07:49:40 +03:00
|
|
|
"core-unit": "bash lighthouse-core/scripts/run-mocha.sh --core",
|
|
|
|
"cli-unit": "bash lighthouse-core/scripts/run-mocha.sh --cli",
|
|
|
|
"viewer-unit": "bash lighthouse-core/scripts/run-mocha.sh --viewer",
|
|
|
|
"unit": "bash lighthouse-core/scripts/run-mocha.sh --default",
|
|
|
|
"closure": "cd lighthouse-core && node closure/closure-type-checking.js",
|
|
|
|
"watch": "bash lighthouse-core/scripts/run-mocha.sh --watch",
|
|
|
|
"chrome": "node ./lighthouse-cli/manual-chrome-launcher.js",
|
2016-11-04 02:54:36 +03:00
|
|
|
"fast": "npm run 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",
|
2016-12-07 04:16:50 +03:00
|
|
|
"deploy-viewer": "cd lighthouse-viewer && gulp deploy"
|
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",
|
|
|
|
"babel-plugin-transform-es2015-destructuring": "^6.9.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",
|
|
|
|
"google-closure-compiler": "^20161201.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",
|
2016-07-25 23:12:36 +03:00
|
|
|
"jsdom": "^9.0.0",
|
2017-01-31 11:59:52 +03:00
|
|
|
"mocha": "^3.2.0",
|
2016-12-20 02:29:00 +03:00
|
|
|
"walk": "^2.3.9",
|
|
|
|
"zone.js": "^0.7.3"
|
2016-06-15 21:37:52 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-12-14 05:09:10 +03:00
|
|
|
"axe-core": "2.1.7",
|
2016-10-01 04:09:42 +03:00
|
|
|
"chrome-devtools-frontend": "1.0.422034",
|
2017-01-24 02:44:03 +03:00
|
|
|
"debug": "2.2.0",
|
2016-07-25 23:12:36 +03:00
|
|
|
"devtools-timeline-model": "1.1.6",
|
|
|
|
"gl-matrix": "2.3.2",
|
2017-01-24 02:44:03 +03:00
|
|
|
"handlebars": "4.0.5",
|
|
|
|
"json-stringify-safe": "5.0.1",
|
|
|
|
"marked": "0.3.6",
|
|
|
|
"metaviewport-parser": "0.0.1",
|
|
|
|
"mkdirp": "0.5.1",
|
|
|
|
"opn": "4.0.2",
|
|
|
|
"rimraf": "2.2.8",
|
|
|
|
"semver": "5.3.0",
|
2016-10-17 18:33:27 +03:00
|
|
|
"speedline": "1.0.3",
|
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-02-10 19:46:20 +03:00
|
|
|
"homepage": "https://github.com/GoogleChrome/lighthouse#readme"
|
2016-06-15 21:37:52 +03:00
|
|
|
}
|