forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "lighthouse",
"version": "1.3.2",
"description": "Lighthouse",
"main": "./lighthouse-core/index.js",
"bin": {
"lighthouse": "./lighthouse-cli/index.js",
"chrome-debug": "./lighthouse-cli/manual-chrome-launcher.js"
},
"engines": {
"node": ">=5"
},
"scripts": {
"lint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe . || 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",
"test": "npm run lint --silent && npm run unit",
"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",
"watch": "lighthouse-core/scripts/run-mocha.sh --watch",
"chrome": "./lighthouse-cli/manual-chrome-launcher.js",
"fast": "npm run start -- --disable-device-emulation --disable-cpu-throttling --disable-network-throttling",
"smokehouse": "node $__node_harmony lighthouse-cli/test/smokehouse/smokehouse.js",
"deploy-viewer": "cd lighthouse-viewer && gulp deploy"
},
"devDependencies": {
"@types/node": "^6.0.45",
"babel-core": "^6.16.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"coveralls": "^2.11.9",
"eslint": "^3.12.0",
"eslint-config-google": "^0.7.1",
"google-closure-compiler": "^20161201.0.0",
"gulp": "^3.9.1",
"gulp-replace": "^0.5.4",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.3",
"jsdom": "^9.0.0",
"mocha": "^2.3.3",
"walk": "^2.3.9",
"zone.js": "^0.7.3"
},
"dependencies": {
"axe-core": "2.1.7",
"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",
"marked": "^0.3.6",
"mkdirp": "^0.5.1",
"opn": "^4.0.2",
"rimraf": "^2.2.8",
"semver": ">=4.3.3",
"speedline": "1.0.3",
"whatwg-url": "^4.0.0",
"ws": "^1.1.1",
"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"
}