-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 KB
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
{
"name": "@hugoer/web-perf-cli",
"version": "0.1.1",
"description": "CLI tool to analyze web performance via Lighthouse (lab), PageSpeed Insights (RUM) and Chrome UX Report (CrUX)",
"main": "bin/web-perf.js",
"types": "types/lib/index.d.ts",
"files": [
"bin/",
"lib/",
"types/",
"docs/web-perf-cli-arch.svg"
],
"bin": {
"web-perf": "bin/web-perf.js"
},
"exports": {
".": {
"require": "./lib/index.js",
"types": "./types/lib/index.d.ts"
},
"./lab": {
"require": "./lib/lab.js",
"types": "./types/lib/lab.d.ts"
},
"./psi": {
"require": "./lib/psi.js",
"types": "./types/lib/psi.d.ts"
},
"./crux": {
"require": "./lib/crux.js",
"types": "./types/lib/crux.d.ts"
},
"./crux-history": {
"require": "./lib/crux-history.js",
"types": "./types/lib/crux-history.d.ts"
},
"./utils": {
"require": "./lib/utils.js",
"types": "./types/lib/utils.d.ts"
}
},
"scripts": {
"start": "node bin/web-perf.js",
"lint": "eslint . --fix",
"test": "vitest run",
"generate-types": "tsc --project tsconfig.types.json"
},
"dependencies": {
"chalk": "^4.1.2",
"chrome-launcher": "^1.1.0",
"commander": "^12.1.0",
"inquirer": "^8.2.7",
"lighthouse": "^12.0.0",
"node-fetch": "^2.7.0",
"puppeteer-core": "^24.40.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@googleapis/chromeuxreport": "^7.0.1",
"@googleapis/pagespeedonline": "^5.0.1",
"@netcentric/eslint-config": "^1.0.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"typescript": "6.0.2",
"vitest": "^3.0.0"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
}
}