eval-quality 3.1.0 → 3.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eval-quality",
3
- "version": "3.1.0",
3
+ "version": "3.3.0",
4
4
  "description": "Compile disciplined Behavioral Evaluation Contracts and score their ability to catch known defects.",
5
5
  "author": "Murat Ozcan",
6
6
  "license": "Apache-2.0",
@@ -73,9 +73,9 @@
73
73
  "lint:fix": "biome check --write .",
74
74
  "format": "biome format --write .",
75
75
  "check:docs": "node scripts/check-docs.mjs",
76
- "check:doc-invocations": "node scripts/check-doc-invocations.mjs",
77
- "check:doc-counts": "node scripts/check-doc-counts.ts",
78
- "check:doc-claims": "node scripts/check-doc-claims.ts",
76
+ "check:doc-invocations": "node scripts/gates-cli.ts doc-invocations",
77
+ "check:doc-counts": "node scripts/gates-cli.ts doc-counts",
78
+ "check:doc-claims": "node scripts/gates-cli.ts doc-claims",
79
79
  "lint:spine": "python3 scripts/spine-lint/lint_spine.py --registry-ad 5 --workspace-root . --fail-on high",
80
80
  "test:spine-lint": "uv run --with pytest pytest scripts/spine-lint/tests -q",
81
81
  "build:shareable": "node scripts/build-shareable.mjs",
@@ -101,8 +101,11 @@
101
101
  "check:corpus": "node scripts/check-dev-corpus.ts",
102
102
  "generate:worked-example": "node scripts/generate-worked-example.ts",
103
103
  "check:worked-example": "node scripts/check-worked-example.ts",
104
+ "generate:tutorials": "node scripts/generate-tutorials.ts",
105
+ "check:tutorials": "node scripts/check-tutorials.ts",
104
106
  "generate:version": "node scripts/generate-version.ts",
105
107
  "check:version": "node scripts/check-version.ts",
108
+ "generate:lockfile-age-cache": "node scripts/generate-lockfile-age-cache.ts",
106
109
  "check:lockfile-age": "node dist/gates/gates-cli.js lockfile-age",
107
110
  "check:licences": "node scripts/gates-cli.ts licences",
108
111
  "check:shareable": "node scripts/check-shareable.mjs",
@@ -116,7 +119,7 @@
116
119
  "release:major": "gh workflow run publish.yml --ref main -f bump=major",
117
120
  "release:prepare": "node scripts/release-prepare.mjs",
118
121
  "release:publish": "gh workflow run publish.yml --ref main -f bump=none",
119
- "validate": "npm run build && npm run typecheck && npm run lint && npm run check:docs && npm run check:doc-invocations && npm run check:shareable && npm run lint:spine && npm run check:vectors && npm run check:schemas && npm run check:ad5-registry && npm run check:ad28-registry && npm run check:ad31-table && npm run check:ad33-table && npm run check:ad21-table && npm run check:layers && npm run check:lineage && npm run check:boundary && npm run check:corpus && npm run check:doc-counts && npm run check:doc-claims && npm run check:worked-example && npm run check:version && npm run check:lockfile-age && npm run check:licences && npm run test:coverage",
122
+ "validate": "npm run build && npm run typecheck && npm run lint && npm run check:docs && npm run check:doc-invocations && npm run check:shareable && npm run lint:spine && npm run check:vectors && npm run check:schemas && npm run check:ad5-registry && npm run check:ad28-registry && npm run check:ad31-table && npm run check:ad33-table && npm run check:ad21-table && npm run check:layers && npm run check:lineage && npm run check:boundary && npm run check:corpus && npm run check:doc-counts && npm run check:doc-claims && npm run check:worked-example && npm run check:tutorials && npm run check:version && npm run check:lockfile-age && npm run check:licences && npm run test:coverage",
120
123
  "prepack": "npm run clean && npm run build",
121
124
  "prepublishOnly": "node scripts/assert-publish-authorized.mjs"
122
125
  },