-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.65 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.65 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
{
"name": "ralph-cli",
"version": "0.1.1",
"description": "Minimal, file-based agent loop for autonomous coding.",
"repository": {
"type": "git",
"url": "https://github.com/AskTinNguyen/ralph-cli.git"
},
"bin": {
"ralph": "bin/ralph"
},
"scripts": {
"test": "node tests/cli-smoke.mjs && node tests/agent-loops.mjs && npx tsx tests/test-greeting.js",
"test:integration": "npm run test:checkpoint && npm run test:switcher && npm run test:risk && npm run test:actions && npm run test:notify && npm run test:metrics && npm run test:doctor && npm run test:watch && npm run test:ui-api && npm run test:e2e && npm run test:scope && npm run test:marker && npm run test:lock",
"test:coverage": "c8 --reporter=lcov --reporter=text npm test",
"test:real": "node tests/real-agents.mjs",
"test:ping": "node tests/agent-ping.mjs",
"test:checkpoint": "node tests/integration-checkpoint.mjs",
"test:switcher": "node tests/integration-switcher.mjs",
"test:risk": "node tests/integration-risk.mjs",
"test:actions": "node tests/integration-actions.mjs",
"test:notify": "node tests/integration-notify.mjs",
"test:metrics": "node tests/integration-metrics.mjs",
"test:doctor": "node tests/integration-doctor.mjs",
"test:watch": "node tests/integration-watch.mjs",
"test:ui-api": "node tests/integration-ui-api.mjs",
"test:e2e": "node tests/e2e-workflow.mjs",
"test:scope": "node tests/test-scope-validation.mjs",
"test:marker": "node tests/test-active-prd-marker.mjs",
"test:lock": "node tests/test-lock-mechanism.mjs",
"test:factory-fsm": "node tests/factory-state-machine.mjs",
"test:factory-orchestrator": "node tests/factory-orchestrator.mjs",
"test:factory": "npm run test:factory-fsm && npm run test:factory-orchestrator",
"test:slack": "RALPH_DRY_RUN=1 node tests/integration-slack-reporter.mjs",
"test:blockers": "node tests/integration-check-blockers.mjs",
"test:all": "npm run test:checkpoint && npm run test:switcher && npm run test:risk && npm run test:actions && npm run test:notify && npm run test:metrics && npm run test:doctor && npm run test:watch && npm run test:ui-api && npm run test:e2e && npm run test:scope && npm run test:marker && npm run test:lock && npm run test:factory && npm run test:slack && npm run test:blockers",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write ."
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"franc-min": "^6.2.0",
"minimatch": "^10.1.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"c8": "^10.1.3",
"eslint": "^8.57.0",
"prettier": "^3.2.5"
},
"license": "MIT"
}