-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.89 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
{
"name": "sdlc-studio",
"version": "5.0.0",
"description": "Claude Code skill for managing the full software development lifecycle",
"private": true,
"scripts": {
"lint": "npm run lint:md && npm run lint:style && npm run lint:links && npm run lint:skill && npm run lint:versions && npm run lint:verify-ratchet && npm run lint:lens-signatures && npm run lint:spec-claims && npm run lint:script-tests && npm run lint:budgets && npm run lint:neutrality && npm run lint:dead-flags && npm run lint:action-pins",
"lint:md": "bash tools/lint-md.sh",
"lint:style": "bash tools/lint-style.sh",
"lint:links": "python3 tools/check_links.py",
"lint:skill": "python3 tools/validate_skill.py",
"lint:versions": "python3 tools/check_versions.py",
"lint:disclosure": "python3 .claude/skills/sdlc-studio/scripts/disclosure.py --root .",
"lint:budgets": "python3 tools/check_budgets.py",
"lint:neutrality": "python3 tools/check_neutrality.py",
"lint:action-pins": "bash tools/check_action_pins.sh",
"lint:dead-flags": "python3 .claude/skills/sdlc-studio/scripts/command_audit.py --dead-flags --root .",
"lint:corpus": "python3 tools/lint_corpus.py",
"lint:fix": "bash tools/lint-md.sh --fix",
"test": "npm run test:skill && npm run test:tools",
"test:skill": "bash tools/skill-tests.sh",
"test:tools": "python3 -m unittest discover -s tools/tests",
"lint:script-tests": "python3 tools/check_script_tests.py",
"lint:spec-claims": "python3 tools/check_spec_claims.py",
"lint:verify-ratchet": "python3 .claude/skills/sdlc-studio/scripts/verify_ac.py lint --ratchet --bugs",
"lint:lens-signatures": "python3 .claude/skills/sdlc-studio/scripts/readiness.py profile --validate"
},
"devDependencies": {
"markdownlint-cli": "^0.49.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarrenBenson/sdlc-studio.git"
},
"license": "MIT"
}