pagean 14.4.1 → 14.5.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/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagean",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.0",
|
|
4
4
|
"description": "Pagean is a web page analysis tool designed to automate tests requiring web pages to be loaded in a browser window (e.g. horizontal scrollbar, console errors)",
|
|
5
5
|
"bin": {
|
|
6
|
-
"pagean": "
|
|
7
|
-
"pageanrc-lint": "
|
|
6
|
+
"pagean": "bin/pagean.js",
|
|
7
|
+
"pageanrc-lint": "bin/pageanrc-lint.js"
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|
|
@@ -20,7 +20,10 @@
|
|
|
20
20
|
"start": "node ./bin/pagean.js",
|
|
21
21
|
"start:lint": "node ./bin/pageanrc-lint.js",
|
|
22
22
|
"start:lint-all": "npm run start:lint && npm run start:lint static-server.pageanrc.json && npm run start:lint ./lib/default-config.json",
|
|
23
|
-
"test": "vitest run
|
|
23
|
+
"test": "npm run test:vitest && npm run test:child-process && npm run test:merge-coverage",
|
|
24
|
+
"test:vitest": "vitest run --coverage",
|
|
25
|
+
"test:child-process": "c8 vitest run --reporter=verbose tests/pageanrc.test.js tests/pagean.test.js",
|
|
26
|
+
"test:merge-coverage": "node scripts/merge-coverage.js",
|
|
24
27
|
"test:no-coverage": "vitest run"
|
|
25
28
|
},
|
|
26
29
|
"repository": {
|
|
@@ -56,10 +59,12 @@
|
|
|
56
59
|
"@aarongoldenthal/eslint-config-standard": "^39.0.2",
|
|
57
60
|
"@aarongoldenthal/stylelint-config-standard": "^21.0.0",
|
|
58
61
|
"@vitest/coverage-v8": "^3.2.4",
|
|
59
|
-
"bin-tester": "^7.0.
|
|
60
|
-
"
|
|
62
|
+
"bin-tester": "^7.0.1",
|
|
63
|
+
"c8": "^10.1.3",
|
|
64
|
+
"eslint": "^9.34.0",
|
|
61
65
|
"globals": "^16.3.0",
|
|
62
66
|
"markdownlint-cli2": "^0.18.1",
|
|
67
|
+
"nyc": "^17.1.0",
|
|
63
68
|
"prettier": "^3.6.2",
|
|
64
69
|
"stylelint": "^16.23.1",
|
|
65
70
|
"vitest": "^3.2.4"
|
|
@@ -76,7 +81,7 @@
|
|
|
76
81
|
"kleur": "^4.1.5",
|
|
77
82
|
"normalize-url": "^8.0.2",
|
|
78
83
|
"protocolify": "^4.0.0",
|
|
79
|
-
"puppeteer": "^24.
|
|
84
|
+
"puppeteer": "^24.17.0",
|
|
80
85
|
"xml2js": "^0.6.2"
|
|
81
86
|
}
|
|
82
87
|
}
|