-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@intentius/gitlab-warden",
"version": "0.6.1",
"type": "module",
"description": "Declarative governance for GitLab groups & projects — stateless, drift-correcting reconcile in CI (no state file, no Ultimate)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/INTENTIUS/gitlab-warden.git"
},
"homepage": "https://github.com/INTENTIUS/gitlab-warden#readme",
"bugs": {
"url": "https://github.com/INTENTIUS/gitlab-warden/issues"
},
"publishConfig": {
"access": "public"
},
"bin": {
"gitlab-warden": "bin/gitlab-warden.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"tsc": "tsc --noEmit",
"lint:prose": "bash mkdocs-stage.sh && node scripts/lint-prose.mjs $(find docs -name '*.md')",
"test": "vitest run",
"test:e2e:run": "vitest run --config vitest.e2e.config.ts",
"e2e:up": "bash e2e/bootstrap.sh",
"e2e:down": "docker compose -f e2e/docker-compose.yml down -v",
"build": "esbuild src/cli.ts --bundle --platform=node --format=esm --banner:js=\"import{createRequire as __cr}from'module';import{fileURLToPath as __f2p}from'url';import{dirname as __dn}from'path';const require=__cr(import.meta.url);const __filename=__f2p(import.meta.url);const __dirname=__dn(__filename);\" --outfile=dist/cli.js && chmod +x dist/cli.js",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.28.0",
"sentences": "^0.1.1",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
},
"dependencies": {
"@intentius/chant": "^0.72.1",
"@intentius/chant-lexicon-github": "^0.72.1",
"@intentius/chant-lexicon-gitlab": "^0.72.1",
"yaml": "^2.9.0"
}
}