sitespeed.io 23.7.0 → 24.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +1 -0
- package/.github/workflows/building-docker-release.yml +1 -1
- package/.github/workflows/crux-test.yml +2 -2
- package/.github/workflows/docker-scan.yml +1 -1
- package/.github/workflows/docker.yml +11 -7
- package/.github/workflows/linux.yml +20 -12
- package/.github/workflows/safari.yml +7 -3
- package/.github/workflows/sitespeed-io-action-example.yml +1 -1
- package/.github/workflows/unittests.yml +2 -2
- package/.github/workflows/windows.yml +3 -3
- package/CHANGELOG.md +35 -0
- package/Dockerfile +1 -1
- package/lib/cli/cli.js +6 -0
- package/lib/plugins/budget/junit.js +12 -7
- package/lib/plugins/grafana/cli.js +1 -1
- package/lib/plugins/grafana/send-annotation.js +8 -1
- package/lib/plugins/graphite/cli.js +7 -0
- package/lib/plugins/graphite/index.js +1 -1
- package/lib/plugins/html/metricHelper.js +3 -1
- package/lib/plugins/html/templates/url/metrics/index.pug +11 -1
- package/npm-shrinkwrap.json +4683 -3072
- package/package.json +30 -25
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"sitespeed.io": "./bin/sitespeed.js",
|
|
5
5
|
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
|
6
6
|
},
|
|
7
|
-
"version": "
|
|
7
|
+
"version": "24.2.0",
|
|
8
8
|
"description": "Analyze the web performance of your site",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"performance",
|
|
@@ -37,58 +37,63 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/sitespeedio/sitespeed.io/issues"
|
|
39
39
|
},
|
|
40
|
+
"ava": {
|
|
41
|
+
"files": [
|
|
42
|
+
"test/**/*",
|
|
43
|
+
"!test/prepostscripts",
|
|
44
|
+
"!test/runWithoutCli.js",
|
|
45
|
+
"!test/data"
|
|
46
|
+
]
|
|
47
|
+
},
|
|
40
48
|
"scripts": {
|
|
41
49
|
"lint": "eslint . && npm run pug-lint",
|
|
42
50
|
"lint:fix": "eslint . --fix",
|
|
43
51
|
"eslint-check": "eslint --print-config .eslintrc.json | eslint-config-prettier-check",
|
|
44
52
|
"pug-lint": "pug-lint lib/plugins/html/templates",
|
|
45
|
-
"test": "
|
|
53
|
+
"test": "ava",
|
|
46
54
|
"check-licenses": "tools/check-licenses.js",
|
|
47
55
|
"build:css": "sass lib/plugins/html/src/sass/main.scss > lib/plugins/html/assets/css/index.css && cleancss -o lib/plugins/html/assets/css/index.min.css lib/plugins/html/assets/css/index.css && rm lib/plugins/html/assets/css/index.css",
|
|
48
56
|
"generate:assets": "mkdir -p assets/$npm_package_version && cp -R lib/plugins/html/assets/ assets/$npm_package_version/"
|
|
49
57
|
},
|
|
50
58
|
"engines": {
|
|
51
|
-
"node": ">=
|
|
59
|
+
"node": ">=14.19.1"
|
|
52
60
|
},
|
|
53
61
|
"devDependencies": {
|
|
54
|
-
"
|
|
55
|
-
"chai": "4.2.0",
|
|
56
|
-
"chai-as-promised": "7.1.1",
|
|
62
|
+
"ava": "4.2.0",
|
|
57
63
|
"changelog-parser": "2.8.1",
|
|
58
|
-
"clean-css-cli": "
|
|
59
|
-
"eslint": "8.
|
|
60
|
-
"eslint-config-prettier": "8.
|
|
64
|
+
"clean-css-cli": "5.6.0",
|
|
65
|
+
"eslint": "8.14.0",
|
|
66
|
+
"eslint-config-prettier": "8.5.0",
|
|
61
67
|
"eslint-plugin-prettier": "4.0.0",
|
|
62
68
|
"feed": "4.2.2",
|
|
63
69
|
"jsdoc": "^3.6.7",
|
|
64
|
-
"license-checker": "^
|
|
65
|
-
"marked": "4.0.
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"prettier": "2.4.1",
|
|
70
|
+
"license-checker": "^25.0.0",
|
|
71
|
+
"marked": "4.0.14",
|
|
72
|
+
"sass": "1.51.0",
|
|
73
|
+
"prettier": "2.6.2",
|
|
69
74
|
"pug-lint": "^2.6.0",
|
|
70
75
|
"pug-lint-config-clock": "^2.0.0"
|
|
71
76
|
},
|
|
72
77
|
"main": "./lib/sitespeed.js",
|
|
73
78
|
"dependencies": {
|
|
74
|
-
"@google-cloud/storage": "5.
|
|
79
|
+
"@google-cloud/storage": "5.19.3",
|
|
75
80
|
"@tgwf/co2": "0.8.0",
|
|
76
|
-
"aws-sdk": "2.
|
|
81
|
+
"aws-sdk": "2.1121.0",
|
|
77
82
|
"axe-core": "4.4.1",
|
|
78
|
-
"browsertime": "
|
|
79
|
-
"coach-core": "7.1.
|
|
80
|
-
"cli-color": "2.0.
|
|
83
|
+
"browsertime": "16.1.0",
|
|
84
|
+
"coach-core": "7.1.1",
|
|
85
|
+
"cli-color": "2.0.2",
|
|
81
86
|
"concurrent-queue": "7.0.2",
|
|
82
|
-
"dayjs": "1.
|
|
87
|
+
"dayjs": "1.11.1",
|
|
83
88
|
"fast-crc32c": "2.0.0",
|
|
84
89
|
"fast-stats": "0.0.6",
|
|
85
90
|
"find-up": "5.0.0",
|
|
86
|
-
"fs-extra": "
|
|
91
|
+
"fs-extra": "10.1.0",
|
|
87
92
|
"getos": "3.2.1",
|
|
88
|
-
"influx": "5.
|
|
93
|
+
"influx": "5.9.3",
|
|
89
94
|
"intel": "1.2.0",
|
|
90
95
|
"jstransformer-markdown-it": "2.1.0",
|
|
91
|
-
"junit-report-builder": "
|
|
96
|
+
"junit-report-builder": "3.0.0",
|
|
92
97
|
"lodash.chunk": "4.2.0",
|
|
93
98
|
"lodash.clonedeep": "4.5.0",
|
|
94
99
|
"lodash.flatten": "4.4.0",
|
|
@@ -108,9 +113,9 @@
|
|
|
108
113
|
"pug": "3.0.2",
|
|
109
114
|
"recursive-readdir": "2.2.2",
|
|
110
115
|
"simplecrawler": "1.1.9",
|
|
111
|
-
"tape": "
|
|
116
|
+
"tape": "5.5.3",
|
|
112
117
|
"text-table": "0.2.0",
|
|
113
118
|
"uuid": "8.3.2",
|
|
114
|
-
"yargs": "17.
|
|
119
|
+
"yargs": "17.4.1"
|
|
115
120
|
}
|
|
116
121
|
}
|