-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.69 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
{
"name": "lighthouse-plugin-field-performance",
"version": "3.0.0",
"description": "Lighthouse plugin that shows real-user data (field data) from Chrome UX Report",
"repository": "https://github.com/treosh/lighthouse-plugin-field-performance",
"author": "Aleksey Kulikov <[email protected]>, Artem Denysov <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=10"
},
"main": "src/index.js",
"files": [
"src"
],
"keywords": [
"lighthouse",
"lighthouse plugin",
"chrome user experience report",
"crux",
"chrome ux report",
"real user monitoring",
"first contentful paint",
"first input delay"
],
"scripts": {
"test": "prettier -c src/** test/** package.json README.md && tsc -p . && ava",
"mobile-run": "lighthouse --plugins=lighthouse-plugin-field-performance --view --chrome-flags='--headless' --quiet --only-categories=performance,lighthouse-plugin-field-performance --output-path=./results/mobile.html",
"desktop-run": "lighthouse --plugins=lighthouse-plugin-field-performance --view --preset=desktop --chrome-flags='--headless' --quiet --only-categories=performance,lighthouse-plugin-field-performance --output-path=./results/desktop.html"
},
"ava": {
"snapshotDir": "test/snapshots",
"files": [
"test/index.js"
],
"timeout": "30s"
},
"dependencies": {
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"lighthouse": "8 - 11"
},
"devDependencies": {
"@types/lodash": "^4.14.172",
"@types/node": "16.7.10",
"@types/node-fetch": "^2.5.12",
"ava": "^3.15.0",
"lighthouse": "^8.3.0",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
}
}