forked from WangHong-yang/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
{
"name": "lighthouse",
"version": "1.0.2",
"description": "Lighthouse",
"main": "./lighthouse-core/module/index.js",
"bin": "./lighthouse-cli/index.js",
"engines": {
"node": ">=5"
},
"scripts": {
"//":
"// dependency installation",
"postinstall": "npm run core-install && npm run extension-install",
"core-install": "npm --prefix ./lighthouse-core install ./lighthouse-core",
"extension-install": "npm --prefix ./lighthouse-extension install ./lighthouse-extension",
"//":
"// global tasks",
"lint": "eslint .",
"smoke": "lighthouse-cli/scripts/run-smoke-tests.sh",
"coverage": "istanbul cover -x \"**/third_party/**\" _mocha -- $(find */test -name '*.js') --timeout 60000",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"start": "node ./lighthouse-cli/index.js",
"//":
"// test",
"test": "npm run lint --silent && npm run unit && npm run closure",
"cli-unit": "mocha $(find lighthouse-cli/test -name '*.js') --timeout 60000",
"unit": "npm run cli-unit && npm --prefix ./lighthouse-core run unit",
"//":
"// passing through tasks to core",
"closure": "npm --prefix ./lighthouse-core run closure",
"watch": "npm --prefix ./lighthouse-core run watch",
"chrome": "npm --prefix ./lighthouse-core run chrome"
},
"devDependencies": {
"mocha": "^2.3.3",
"eslint": "^2.4.0",
"eslint-config-google": "^0.4.0",
"istanbul": "^0.4.3",
"coveralls": "^2.11.9"
},
"dependencies": {
"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"
}