mjolnir-qa 0.4.0 → 0.5.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mjolnir-qa",
3
- "version": "0.4.0",
3
+ "version": "0.5.2",
4
4
  "description": "Mjölnir — the Verification Trust Engine for QA. Audits test suites and CI pipelines, reports a worthiness score and prioritized findings.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -24,18 +24,27 @@
24
24
  "test": "vitest run",
25
25
  "test:coverage": "vitest run --coverage",
26
26
  "test:watch": "vitest",
27
- "lint": "eslint . && prettier --check .",
27
+ "lint": "eslint . --max-warnings=0 && prettier --check .",
28
28
  "format": "prettier --write .",
29
29
  "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
30
30
  "golden:update": "tsx tests/golden/gen.ts",
31
- "corpus:audit": "tsx tests/corpus/audit.ts",
32
- "corpus:audit:update": "tsx tests/corpus/audit.ts --update",
33
- "fp-audit:generate": "node scripts/generate-fp-audit-table.mjs",
31
+ "corpus:regression": "tsx tests/corpus/audit.ts",
32
+ "corpus:regression:update": "tsx tests/corpus/audit.ts --update",
33
+ "corpus:sample": "tsx scripts/corpus-sample.ts",
34
+ "fp-audit:generate": "tsx scripts/generate-fp-audit-table.ts",
34
35
  "docs:rules": "tsx scripts/generate-rule-docs.ts",
36
+ "docs:capability": "tsx scripts/generate-capability-matrix.ts",
35
37
  "docs:hero": "tsx scripts/generate-readme-hero.ts",
38
+ "docs:formats": "tsx scripts/generate-site-formats.ts",
39
+ "docs:forensics-samples": "tsx scripts/generate-forensics-samples.ts",
40
+ "site:doctor": "npm --prefix site run doctor",
41
+ "site:audit": "node site/scripts/audit-live.mjs",
42
+ "site:lighthouse": "node site/scripts/lighthouse-run.mjs",
43
+ "docs:demo": "tsx scripts/generate-readme-demo.ts",
44
+ "docs:translations": "node scripts/check-readme-translations.mjs",
36
45
  "self-scan": "node dist/cli.mjs .",
37
46
  "prepare": "husky",
38
- "prepublishOnly": "npm run build && npm test"
47
+ "prepublishOnly": "npm run build"
39
48
  },
40
49
  "keywords": [
41
50
  "qa",
@@ -68,10 +77,16 @@
68
77
  "devDependencies": {
69
78
  "@eslint/js": "^10.0.1",
70
79
  "@playwright/test": "^1.50.0",
71
- "@types/node": "^24.13.3",
80
+ "@types/node": "^26.4.0",
81
+ "@vitest/coverage-istanbul": "^4.1.11",
72
82
  "@vitest/coverage-v8": "^4.1.11",
83
+ "axe-core": "^4.13.0",
73
84
  "eslint": "^10.9.1",
85
+ "eslint-plugin-regexp": "^3.3.0",
86
+ "eslint-plugin-security": "^4.0.1",
87
+ "fast-check": "^4.9.0",
74
88
  "husky": "^9.1.7",
89
+ "lighthouse": "^13.4.1",
75
90
  "lint-staged": "^17.3.0",
76
91
  "prettier": "^3.3.0",
77
92
  "tsdown": "^0.22.14",
@@ -88,5 +103,8 @@
88
103
  "*.{json,md,yml,yaml}": [
89
104
  "prettier --write"
90
105
  ]
106
+ },
107
+ "allowScripts": {
108
+ "@vitest/coverage-istanbul@4.1.11": true
91
109
  }
92
110
  }