@intentius/gitlab-warden 0.1.0 → 0.2.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.
Files changed (3) hide show
  1. package/README.md +48 -5
  2. package/dist/cli.js +9483 -17
  3. package/package.json +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/gitlab-warden",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "description": "Declarative governance for GitLab groups & projects — stateless, drift-correcting reconcile in CI (no Terraform state, no Ultimate)",
6
6
  "license": "Apache-2.0",
@@ -25,6 +25,9 @@
25
25
  "scripts": {
26
26
  "tsc": "tsc --noEmit",
27
27
  "test": "vitest run",
28
+ "test:e2e:run": "vitest run --config vitest.e2e.config.ts",
29
+ "e2e:up": "bash e2e/bootstrap.sh",
30
+ "e2e:down": "docker compose -f e2e/docker-compose.yml down -v",
28
31
  "build": "esbuild src/cli.ts --bundle --platform=node --format=esm --banner:js=\"import{createRequire as __cr}from'module';const require=__cr(import.meta.url);\" --outfile=dist/cli.js && chmod +x dist/cli.js",
29
32
  "prepublishOnly": "npm run build"
30
33
  },
@@ -33,5 +36,9 @@
33
36
  "esbuild": "^0.28.0",
34
37
  "typescript": "^5.9.3",
35
38
  "vitest": "^4.1.9"
39
+ },
40
+ "dependencies": {
41
+ "@intentius/chant": "^0.12.0",
42
+ "yaml": "^2.9.0"
36
43
  }
37
44
  }