-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 Bytes
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
{
"name": "bmad-story-automator",
"version": "1.14.2",
"description": "Install the BMAD story-automator self-contained skills into a BMAD project.",
"license": "MIT",
"bin": {
"bmad-story-automator": "bin/bmad-story-automator"
},
"files": [
"bin/",
"docs/",
"install.sh",
"skills/",
"!skills/**/__pycache__/",
"!skills/**/*.pyc",
"!skills/**/*.pyo",
"README.md",
"ref.png",
".claude-plugin/"
],
"scripts": {
"pack:dry-run": "npm pack --dry-run",
"test:python": "PYTHONPATH=skills/bmad-story-automator/src python3 -m unittest discover -s tests",
"test:smoke": "bash scripts/smoke-test.sh",
"verify": "npm run test:python && npm run pack:dry-run && npm run test:smoke"
},
"engines": {
"node": ">=18"
},
"keywords": [
"bmad",
"claude",
"codex",
"workflow",
"automation",
"python"
]
}