-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@jorisjonkers-dev/deploy-kit",
"version": "0.2.0",
"description": "Deployment toolkit: the Project Intent model, its decision record, and the compiler that renders it.",
"type": "module",
"license": "LicenseRef-JorisJonkers-Proprietary-1.0",
"engines": {
"node": ">=24"
},
"files": [
"docs/adr/",
"spec/"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:adrs": "node scripts/lint-adrs.ts",
"lint:links": "node scripts/lint-links.ts",
"lint:manifests": "node scripts/lint-manifests.ts",
"lint:boundaries": "node scripts/lint-boundaries.ts",
"lint:requirements": "node scripts/lint-requirements.ts",
"lint:rules": "node scripts/lint-rules.ts",
"lint:codes": "node scripts/lint-codes.ts",
"lint:docs": "node scripts/lint-docs.ts",
"lint:agents": "node scripts/lint-agents.ts",
"lint:meaning": "node scripts/lint-meaning.ts",
"lint:secrets": "node scripts/lint-secrets.ts",
"report:pr": "node scripts/pr-report.ts",
"publish:rc": "node scripts/rc-publish.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run",
"verify": "npm run lint && npm run format:check && npm run typecheck && npm run lint:adrs && npm run lint:links && npm run lint:manifests && npm run lint:requirements && npm run lint:rules && npm run lint:codes && npm run lint:docs && npm run lint:agents && npm run lint:meaning && npm run lint:secrets && npm run lint:boundaries && npm run test:coverage"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@stryker-mutator/core": "10.0.0",
"@stryker-mutator/vitest-runner": "10.0.0",
"@types/node": "24.13.3",
"@vitest/coverage-v8": "4.1.11",
"@vitest/eslint-plugin": "1.6.27",
"dependency-cruiser": "18.2.0",
"eslint": "10.9.1",
"globals": "17.12.0",
"prettier": "3.9.6",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0",
"vitest": "4.1.11"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JorisJonkers-dev/deploy-kit.git"
},
"homepage": "https://github.com/JorisJonkers-dev/deploy-kit#readme",
"keywords": [
"deploy",
"kubernetes",
"service-intent",
"json-schema",
"gitops"
],
"dependencies": {
"yaml": "2.9.1",
"zod": "^4.5.4"
}
}