-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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": "structured-madr-validator",
"version": "1.2.0",
"description": "Validates Architectural Decision Records against the Structured MADR specification",
"main": "src/validate.js",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"generate:spec": "node scripts/generate-spec-pages.mjs",
"validate": "node src/validate.js",
"test": "node --test src/**/*.test.js",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zircote/structured-madr.git"
},
"keywords": [
"adr",
"architecture",
"decision-records",
"madr",
"validation",
"github-action"
],
"author": "zircote",
"license": "MIT",
"bugs": {
"url": "https://github.com/zircote/structured-madr/issues"
},
"homepage": "https://github.com/zircote/structured-madr#readme",
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"glob": "^13.0.6",
"yaml": "^2.8.3"
},
"devDependencies": {
"astro": "^6.1.9",
"@astrojs/starlight": "^0.38.4",
"eslint": "^10.2.1"
},
"engines": {
"node": ">=20.0.0"
}
}