-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.52 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema": "https://json.schemastore.org/package.json",
"name": "bmad-module-ultracode-goal",
"version": "2.2.0",
"description": "BMAD module — Run a BMAD Epic autonomously to a machine-checked, TEA-gated Definition-of-Done.",
"keywords": [
"bmad",
"bmad-method",
"bmad-module",
"agent-skills",
"agentskills",
"agents",
"skills",
"autonomous",
"epic",
"goal-mode",
"auto-mode",
"auto-memory",
"quality-gates",
"tea",
"test-architect",
"definition-of-done"
],
"repository": {
"type": "git",
"url": "git+https://github.com/armelhbobdad/bmad-module-ultracode-goal.git"
},
"license": "MIT",
"author": "armelhbobdad",
"main": "tools/cli/ucg-cli.js",
"bin": {
"bmad-module-ultracode-goal": "tools/ucg-npx-wrapper.js"
},
"scripts": {
"docs:build": "node tools/build-docs.js",
"docs:dev": "npm run --prefix website docs:dev",
"docs:preview": "npm run --prefix website preview",
"format:check": "prettier --check \"**/*.{js,cjs,mjs,json,yaml}\"",
"format:fix": "prettier --write \"**/*.{js,cjs,mjs,json,yaml}\"",
"lint": "eslint . --ext .js,.cjs,.mjs,.yaml --max-warnings=0",
"lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"prepare": "husky || exit 0",
"quality": "run-p --print-label --aggregate-output format:check lint lint:md test:install test:cli test:python test:rehype test:docs-links-tool validate:skills validate:refs validate:fixtures validate:docs-links",
"test": "npm run quality",
"test:cli": "node test/test-cli-integration.js",
"test:docs-links-tool": "node test/test-validate-docs-links.js",
"test:install": "node test/test-installation-components.js",
"test:python": "uv run --with pytest==9.1.1 --with pytest-xdist==3.8.0 pytest skills/ultracode-goal/scripts/tests/ -n auto",
"test:rehype": "node test/test-rehype-markdown-links.js",
"ucg:install": "node tools/cli/ucg-cli.js install",
"ucg:status": "node tools/cli/ucg-cli.js status",
"ucg:uninstall": "node tools/cli/ucg-cli.js uninstall",
"ucg:update": "node tools/cli/ucg-cli.js update",
"validate:docs-links": "node tools/validate-docs-links.js --strict",
"validate:fixtures": "node tools/validate-fixtures.js --strict",
"validate:refs": "node tools/validate-file-refs.js --strict",
"validate:skills": "node tools/validate-skills.js --strict"
},
"lint-staged": {
"*.{js,cjs,mjs}": [
"npm run lint:fix",
"npm run format:fix"
],
"*.yaml": [
"eslint --fix",
"npm run format:fix"
],
"*.json": [
"npm run format:fix"
],
"*.md": [
"markdownlint-cli2"
]
},
"dependencies": {
"@clack/prompts": "1.5.1",
"chalk": "4.1.2",
"commander": "14.0.3",
"figlet": "1.11.0",
"fs-extra": "11.3.5",
"js-yaml": "4.2.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"conventional-changelog-cli": "^5.0.0",
"csv-parse": "^6.1.0",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-yml": "^1.18.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.1",
"markdownlint-cli2": "^0.19.1",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"prettier-plugin-packagejson": "^2.5.19",
"unist-util-visit": "5.1.0",
"yaml": "^2.7.0",
"yaml-eslint-parser": "^1.2.3"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}