-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.88 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
{
"name": "lighthouse-plugin-crux",
"version": "0.1.0",
"main": "lib/plugin.js",
"type": "module",
"files": [
"lib"
],
"scripts": {
"prebuild": "rimraf ./lib",
"build": "tsc",
"pregather": "npm link && npm link lighthouse-plugin-crux",
"gather": "lighthouse https://github.com/GoogleChrome/lighthouse --plugins=lighthouse-plugin-crux --only-categories=lighthouse-plugin-crux --chrome-flags='--headless' --gather-mode",
"run:fast:view": "lighthouse https://github.com/GoogleChrome/lighthouse --plugins=lighthouse-plugin-crux --only-categories=lighthouse-plugin-crux --chrome-flags='--headless' --audit-mode --view --output-path=./results/report.html",
"run:fast:json": "lighthouse https://github.com/GoogleChrome/lighthouse --plugins=lighthouse-plugin-crux --only-categories=lighthouse-plugin-crux --chrome-flags='--headless' --audit-mode --output=json --output-path=./results/report.json",
"run:full": "lighthouse https://github.com/GoogleChrome/lighthouse --plugins=lighthouse-plugin-crux --view --chrome-flags='--headless' --output=json --output-path=./report.json",
"run:gather-run": "lighthouse https://github.com/GoogleChrome/lighthouse --plugins=lighthouse-plugin-crux --only-categories=lighthouse-plugin-crux --chrome-flags='--headless' --view"
},
"peerDependencies": {
"lighthouse": "^10.0.0 || ^11.0.0 || ^12.0.0"
},
"devDependencies": {
"@types/tap": "18.0.0",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"devtools-protocol": "0.0.1413303",
"lighthouse": "12.3.0",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typed-query-selector": "2.12.0",
"typescript": "5.7.3"
},
"dependencies": {
"lodash-es": "4.17.21"
},
"resolutions": {
"puppeteer/**/devtools-protocol": "0.0.1413303",
"puppeteer-core/**/devtools-protocol": "0.0.1413303"
},
"volta": {
"node": "22.13.1",
"npm": "11.1.0"
}
}