-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 1.03 KB
/
package.json
File metadata and controls
18 lines (18 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "caveat-drop",
"version": "0.1.0",
"description": "Unit27 adjacent utility for reviewing whether public claims dropped evidence boundaries.",
"type": "module",
"private": true,
"scripts": {
"build": "tsc",
"test": "npm run build && node --test dist/tests/*.test.js",
"review": "npm run build && node dist/src/cli.js",
"demo": "npm run review -- examples/scenarios/portfolio_claim.md --caveats examples/scenarios/portfolio_caveats.md --output examples/reviews/portfolio_caveat_review.md --review-only && npm run review -- examples/scenarios/org_readiness_claim.md --caveats examples/scenarios/org_readiness_caveats.md --output examples/reviews/org_readiness_caveat_review.md --review-only && npm run review -- examples/scenarios/medical_safety_claim.md --caveats examples/scenarios/medical_safety_caveats.md --output examples/reviews/medical_safety_caveat_review.md --review-only",
"check": "npm test && npm run demo"
},
"devDependencies": {
"@types/node": "^20.12.12",
"typescript": "^5.4.5"
}
}