lighthouse/package.json

74 строки
2.5 KiB
JSON
Исходник Обычный вид История

{
"name": "lighthouse",
2016-11-30 02:53:37 +03:00
"version": "1.2.2",
"description": "Lighthouse",
2016-07-11 15:36:50 +03:00
"main": "./lighthouse-core/index.js",
"bin": {
"lighthouse": "./lighthouse-cli/index.js",
"chrome-debug": "./lighthouse-cli/manual-chrome-launcher.js"
},
"engines": {
"node": ">=5"
},
"scripts": {
2016-08-02 02:10:54 +03:00
"lint": "[ \"$CI\" = true ] && eslint --quiet . || eslint .",
"smoke": "lighthouse-cli/test/smokehouse/offline-local/run-tests.sh && lighthouse-cli/test/smokehouse/dobetterweb/run-tests.sh",
"coverage": "node $__node_harmony $(npm bin)/istanbul cover -x \"**/third_party/**\" _mocha -- $(find */test -name '*-test.js') --timeout 10000 --reporter progress",
"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",
2016-08-02 02:10:54 +03:00
"cli-unit": "lighthouse-core/scripts/run-mocha.sh --cli",
"unit": "lighthouse-core/scripts/run-mocha.sh --default",
"closure": "cd lighthouse-core && closure/closure-type-checking.js",
2016-08-02 02:10:54 +03:00
"watch": "lighthouse-core/scripts/run-mocha.sh --watch",
2016-09-23 04:20:09 +03:00
"chrome": "lighthouse-core/scripts/launch-chrome.sh",
"fast": "npm run start -- --disable-device-emulation --disable-cpu-throttling --disable-network-throttling",
"smokehouse": "node $__node_harmony lighthouse-cli/test/smokehouse/smokehouse.js"
},
"devDependencies": {
2016-10-19 15:50:52 +03:00
"@types/node": "^6.0.45",
"babel-core": "^6.16.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"coveralls": "^2.11.9",
"eslint": "^2.4.0",
"eslint-config-google": "^0.4.0",
"google-closure-compiler": "^20160517.0.0",
"gulp": "^3.9.1",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.3",
"jsdom": "^9.0.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.3",
"request": "^2.69.0",
"walk": "^2.3.9"
},
"dependencies": {
"axe-core": "^1.1.1",
"chrome-devtools-frontend": "1.0.422034",
"debug": "^2.2.0",
"devtools-timeline-model": "1.1.6",
"gl-matrix": "2.3.2",
"handlebars": "^4.0.5",
"json-stringify-safe": "^5.0.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.2.8",
2016-06-28 00:19:23 +03:00
"semver": ">=4.3.3",
"speedline": "1.0.3",
"ws": "^1.1.1",
2016-06-23 22:01:31 +03:00
"yargs": "3.30.0"
},
"repository": "googlechrome/lighthouse",
"keywords": [
"google",
"chrome",
"devtools"
],
"author": "The Chromium Authors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googlechrome/lighthouse/issues"
},
"homepage": "https://github.com/googlechrome/lighthouse#readme"
}