-
-
Notifications
You must be signed in to change notification settings - Fork 628
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.29 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.29 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "sitespeed.io",
"type": "module",
"bin": {
"sitespeed.io": "./bin/sitespeed.js",
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
},
"version": "42.3.0",
"description": "sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.",
"keywords": [
"performance",
"web",
"rules",
"har",
"webperf",
"perfmatters",
"navigation-timing",
"browser"
],
"homepage": "https://www.sitespeed.io",
"license": "MIT",
"author": {
"name": "Peter Hedenskog",
"url": "https://www.peterhedenskog.com"
},
"contributors": [
{
"name": "Tobias Lidskog"
},
{
"name": "Jonathan Lee"
}
],
"repository": {
"type": "git",
"url": "git://github.com/sitespeedio/sitespeed.io.git"
},
"bugs": {
"url": "https://github.com/sitespeedio/sitespeed.io/issues"
},
"ava": {
"files": [
"test/**/*",
"!test/prepostscripts",
"!test/runWithoutCli.js",
"!test/data"
]
},
"scripts": {
"lint": "eslint . && npm run pug-lint",
"lint:fix": "eslint . --fix",
"pug-lint": "pug-lint lib/plugins/html/templates",
"test": "ava",
"check-licenses": "tools/check-licenses.js",
"build:css": "npm run build:css-light && npm run build:css-dark",
"build:css-light": "sass lib/plugins/html/src/sass/main-light.scss > lib/plugins/html/assets/css/index-light.css && cleancss -o lib/plugins/html/assets/css/index-light.min.css lib/plugins/html/assets/css/index-light.css && rm lib/plugins/html/assets/css/index-light.css ",
"build:css-dark": "sass lib/plugins/html/src/sass/main-dark.scss > lib/plugins/html/assets/css/index-dark.css && cleancss -o lib/plugins/html/assets/css/index-dark.min.css lib/plugins/html/assets/css/index-dark.css && rm lib/plugins/html/assets/css/index-dark.css",
"build:waterfall-tools": "node tools/buildWaterfallTools.js",
"generate:assets": "mkdir -p assets/$npm_package_version && cp -R lib/plugins/html/assets/ assets/$npm_package_version/",
"postinstall": "node tools/postinstall.js"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"ava": "6.4.1",
"changelog-parser": "3.0.1",
"clean-css-cli": "5.6.3",
"esbuild": "0.28.0",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "64.0.0",
"feed": "5.2.1",
"globals": "17.6.0",
"license-checker": "25.0.1",
"marked": "18.0.3",
"prettier": "3.8.3",
"pug-lint": "2.7.0",
"pug-lint-config-clock": "2.0.0",
"sass": "1.99.0"
},
"exports": "./lib/sitespeed.js",
"dependencies": {
"@aws-sdk/client-s3": "3.1009.0",
"@google-cloud/storage": "7.19.0",
"@sitespeed.io/log": "2.0.0",
"@sitespeed.io/plugin": "1.0.2",
"@slack/webhook": "7.0.6",
"@tgwf/co2": "0.19.0",
"axe-core": "4.11.4",
"browsertime": "28.2.0",
"coach-core": "9.2.1",
"fast-stats": "0.0.7",
"import-global": "1.1.1",
"pug": "3.0.3",
"ssh2-sftp-client": "12.1.1",
"waterfall-tools": "0.4.0",
"yargs": "18.0.0"
},
"overrides": {
"whatwg-url": "^14.0.0",
"form-data@2.5.2": "2.5.5"
}
}