-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.48 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
74
75
76
77
{
"name": "ddduck",
"version": "0.1.2",
"description": "An opinionated DDD framework for authoring, validating, and visualizing machine-readable product-spec models.",
"keywords": [
"ddd",
"domain-driven-design",
"product-spec",
"model",
"traceability",
"yaml",
"json-schema",
"cli"
],
"license": "MIT",
"author": "diegomarino <760919+diegomarino@users.noreply.github.com> (https://github.com/diegomarino)",
"homepage": "https://github.com/diegomarino/ddduck#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/diegomarino/ddduck.git"
},
"bugs": {
"url": "https://github.com/diegomarino/ddduck/issues"
},
"engines": {
"node": ">=22"
},
"type": "module",
"files": [
"scripts/",
"schemas/",
"policies/",
"skills/",
"docs/architecture.md",
"docs/getting-started.md",
"docs/model.md",
"docs/model-reference.md",
"docs/cli.md"
],
"bin": {
"ddduck": "scripts/ddduck.mjs"
},
"scripts": {
"check": "npm run check:static && npm test",
"check:static": "npm run check:model && npm run check:docs && npm run check:graph && npm run check:graph:svg && npm run lint && npm run lint:md && npm run format:check",
"check:docs": "node scripts/check-generated-docs.mjs",
"check:graph": "node scripts/check-generated-graph.mjs",
"check:graph:svg": "node scripts/check-generated-graph-svg.mjs",
"check:model": "node scripts/check-model.mjs --root docs/ddd --docs-root docs/ddd --docs-root .",
"format:check": "prettier --check .",
"generate:docs": "node scripts/generate-docs.mjs",
"generate:graph": "node scripts/generate-graph.mjs",
"generate:graph:svg": "node scripts/generate-graph-svg.mjs",
"lint": "eslint .",
"lint:md": "markdownlint-cli2 \"*.md\" \"docs/**/*.md\" \"examples/**/*.md\" \"#CHANGELOG.md\" \"#docs/audits\" \"#docs/superpowers\"",
"test": "node --test test/*.test.mjs",
"test:coverage": "node --test --experimental-test-coverage test/*.test.mjs",
"pack:dry-run": "npm pack --dry-run --cache .npm-cache",
"release:check": "npm run check && npm run pack:dry-run",
"prepublishOnly": "npm run release:check"
},
"dependencies": {
"@hpcc-js/wasm": "^2.35.0",
"ajv": "^8.20.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"yaml": "^2.8.0"
},
"devDependencies": {
"eslint": "^10.8.0",
"markdownlint-cli2": "^0.23.2",
"prettier": "^3.9.6"
},
"overrides": {
"fast-uri": "^3.1.5"
}
}