mjolnir-qa 0.4.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/CHANGELOG.md +124 -0
- package/LICENSE +21 -0
- package/README.md +395 -0
- package/dist/cli.d.mts +234 -0
- package/dist/cli.mjs +10372 -0
- package/package.json +92 -0
package/package.json
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mjolnir-qa",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Mjölnir — the Verification Trust Engine for QA. Audits test suites and CI pipelines, reports a worthiness score and prioritized findings.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": ">=22.18"
|
|
8
|
+
},
|
|
9
|
+
"bin": {
|
|
10
|
+
"mjolnir": "dist/cli.mjs"
|
|
11
|
+
},
|
|
12
|
+
"workspaces": [
|
|
13
|
+
"packages/*"
|
|
14
|
+
],
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"CHANGELOG.md"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsdown src/cli.ts --format esm --dts --out-dir dist && npm run build --workspaces --if-present",
|
|
23
|
+
"dev": "tsx src/cli.ts",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"lint": "eslint . && prettier --check .",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
|
|
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",
|
|
34
|
+
"docs:rules": "tsx scripts/generate-rule-docs.ts",
|
|
35
|
+
"docs:hero": "tsx scripts/generate-readme-hero.ts",
|
|
36
|
+
"self-scan": "node dist/cli.mjs .",
|
|
37
|
+
"prepare": "husky",
|
|
38
|
+
"prepublishOnly": "npm run build && npm test"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"qa",
|
|
42
|
+
"testing",
|
|
43
|
+
"ci",
|
|
44
|
+
"github-actions",
|
|
45
|
+
"jest",
|
|
46
|
+
"vitest",
|
|
47
|
+
"playwright",
|
|
48
|
+
"code-quality",
|
|
49
|
+
"linter",
|
|
50
|
+
"static-analysis"
|
|
51
|
+
],
|
|
52
|
+
"author": "Mjölnir Team",
|
|
53
|
+
"license": "MIT",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "git+https://github.com/Sergey-Bar/Mjolnir.git"
|
|
57
|
+
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/Sergey-Bar/Mjolnir/issues"
|
|
60
|
+
},
|
|
61
|
+
"homepage": "https://github.com/Sergey-Bar/Mjolnir#readme",
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"tree-sitter-wasms": "^0.1.13",
|
|
64
|
+
"ts-morph": "^28.0.0",
|
|
65
|
+
"web-tree-sitter": "0.25.6",
|
|
66
|
+
"yaml": "^2.5.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@eslint/js": "^10.0.1",
|
|
70
|
+
"@playwright/test": "^1.50.0",
|
|
71
|
+
"@types/node": "^24.13.3",
|
|
72
|
+
"@vitest/coverage-v8": "^4.1.11",
|
|
73
|
+
"eslint": "^10.9.1",
|
|
74
|
+
"husky": "^9.1.7",
|
|
75
|
+
"lint-staged": "^17.3.0",
|
|
76
|
+
"prettier": "^3.3.0",
|
|
77
|
+
"tsdown": "^0.22.14",
|
|
78
|
+
"tsx": "^4.16.0",
|
|
79
|
+
"typescript": "^6.0.3",
|
|
80
|
+
"typescript-eslint": "^8.68.0",
|
|
81
|
+
"vitest": "^4.1.11"
|
|
82
|
+
},
|
|
83
|
+
"lint-staged": {
|
|
84
|
+
"*.{ts,js,mjs}": [
|
|
85
|
+
"prettier --write",
|
|
86
|
+
"eslint --fix"
|
|
87
|
+
],
|
|
88
|
+
"*.{json,md,yml,yaml}": [
|
|
89
|
+
"prettier --write"
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
}
|