mjolnir-qa 2.0.0 → 2.0.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,13 +1,14 @@
1
1
  {
2
2
  "name": "mjolnir-qa",
3
- "version": "2.0.0",
3
+ "version": "2.0.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": {
7
7
  "node": ">=22.18"
8
8
  },
9
9
  "bin": {
10
- "mjolnir": "dist/cli.mjs"
10
+ "mjolnir": "dist/cli.mjs",
11
+ "mjolnir-qa": "dist/cli.mjs"
11
12
  },
12
13
  "workspaces": [
13
14
  "packages/*"
@@ -26,10 +27,13 @@
26
27
  "bench:scan": "tsx scripts/bench-scan.ts .mjolnir --files 300",
27
28
  "test:stress": "vitest run --config vitest.stress.config.ts",
28
29
  "test:coverage": "vitest run --coverage",
30
+ "coverage:ratchet": "node scripts/check-coverage-ratchet.mjs",
29
31
  "test:watch": "vitest",
30
32
  "lint": "eslint . --max-warnings=0 && prettier --check .",
31
33
  "format": "prettier --write .",
32
34
  "typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json && tsx scripts/typecheck-fixtures.ts",
35
+ "certify": "npm run lint && npm run typecheck && npm run test && npx vitest run tests/contract/",
36
+ "ci-local": "npm run certify && npm run brand:doctor && npm run brand:doctor:selftest && npm run brand:fonts:check",
33
37
  "golden:update": "tsx tests/golden/gen.ts",
34
38
  "detector-hashes:update": "tsx scripts/generate-detector-hashes.ts",
35
39
  "corpus:regression": "tsx tests/corpus/audit.ts",
@@ -106,7 +110,7 @@
106
110
  "@eslint/js": "^10.0.1",
107
111
  "@playwright/test": "^1.50.0",
108
112
  "@types/node": "^26.4.0",
109
- "@vitest/coverage-istanbul": "^4.1.11",
113
+ "@vitest/coverage-istanbul": "^5.0.1",
110
114
  "axe-core": "^4.13.0",
111
115
  "eslint": "^10.9.1",
112
116
  "eslint-plugin-regexp": "^3.3.0",
@@ -121,7 +125,7 @@
121
125
  "tsx": "^4.16.0",
122
126
  "typescript": "^6.0.3",
123
127
  "typescript-eslint": "^8.68.0",
124
- "vitest": "^4.1.11"
128
+ "vitest": "^5.0.1"
125
129
  },
126
130
  "lint-staged": {
127
131
  "*.{ts,js,mjs}": [
@@ -133,6 +137,6 @@
133
137
  ]
134
138
  },
135
139
  "allowScripts": {
136
- "@vitest/coverage-istanbul@4.1.11": true
140
+ "@vitest/coverage-istanbul@5.0.1": true
137
141
  }
138
142
  }