-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
{
"name": "lighthouse4u",
"version": "1.10.1",
"description": "LH4U provides Google Lighthouse as a service, surfaced by both a friendly UI+API, and backed by Elastic Search for all your query and visualization needs",
"main": "./src/cli.js",
"bin": {
"lh4u": "./bin/lh4u",
"lighthouse4u": "./bin/lh4u"
},
"scripts": {
"eslint": "eslint-godaddy -c .eslintrc src/",
"cover": "nyc mocha test/",
"pretest": "npm run eslint",
"report": "nyc report --reporter=lcov",
"init": "./bin/lh4u init --config local --config-dir ./test/config --config-base defaults",
"start": "./bin/lh4u server --config local --config-dir ./test/config --config-base defaults --before-start ./test/local/before-start.js",
"test": "npm run cover && npm run report"
},
"engines": {
"node": ">=8.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/godaddy/lighthouse4u.git"
},
"keywords": [
"lighthouse",
"google",
"chrome",
"devtools"
],
"files": [
"bin",
"src",
"LICENSE",
"README.md",
"SECURITY.md",
"package.json"
],
"author": "GoDaddy.com Operating Company LLC",
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.1",
"chrome-launcher": "^0.15.0",
"config-shield": "^0.2.3",
"cross-fetch": "^3.1.4",
"ejs": "^3.1.6",
"express": "^4.19.2",
"json5": "^2.2.0",
"lighthouse": "^9.6.8",
"lodash": "^4.17.21",
"papaparse": "^5.3.1",
"tldjs": "^2.3.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"amqplib": "^0.10.2",
"chai": "^4.3.4",
"eslint": "^8.0.0",
"eslint-config-godaddy": "^4.0.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-mocha": "^7.0.1",
"fs-extra": "^9.1.0",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0"
}
}