@ipation/specbridge 2.4.2 → 2.4.3
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 +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ipation/specbridge",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"test:integration": "npm run test:integration:core && npm run test:integration:cli",
|
|
24
24
|
"test:integration:core": "vitest run --config vitest.integration.core.config.ts",
|
|
25
25
|
"test:integration:cli": "vitest run --config vitest.integration.cli.config.ts",
|
|
26
|
+
"test:integration:cli:smoke": "vitest run --config vitest.integration.cli.config.ts tests/integration/cli/smoke.test.ts",
|
|
27
|
+
"test:integration:cli:core": "vitest run --config vitest.integration.cli.config.ts tests/integration/cli/init-verify.test.ts tests/integration/cli/infer-decision.test.ts",
|
|
28
|
+
"test:integration:cli:aux": "vitest run --config vitest.integration.cli.config.ts tests/integration/cli/hook-report-context.test.ts tests/integration/cli/errors.test.ts",
|
|
26
29
|
"test:coverage": "vitest run --coverage",
|
|
27
30
|
"test:ui": "vitest --ui",
|
|
28
31
|
"lint": "eslint .",
|
|
@@ -37,6 +40,7 @@
|
|
|
37
40
|
"docs": "typedoc --out docs/api src/index.ts",
|
|
38
41
|
"docs:serve": "npm run docs && npx http-server docs/api",
|
|
39
42
|
"pack:check": "npm_config_cache=.cache/npm npm pack --ignore-scripts && npm_config_cache=.cache/npm HUSKY=0 npm pack --dry-run",
|
|
43
|
+
"deps:outdated": "npm_config_cache=.cache/npm npm outdated --long",
|
|
40
44
|
"health:check": "npm run type-check && npm run lint:check && npm run format:check && npm run test && npm run test:integration && npm run test:coverage && npm audit --audit-level=high",
|
|
41
45
|
"prepare": "husky",
|
|
42
46
|
"prepublishOnly": "npm run build"
|