-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 880 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
{
"name": "stripe-entitlements-rescue-reference",
"version": "1.0.1",
"private": true,
"description": "Synthetic Stripe-like webhook and entitlement rescue reference with deterministic failure evidence.",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"lint": "node scripts/lint-project.mjs",
"check:project": "node scripts/check-project.mjs",
"secret:scan": "node scripts/secret-scan.mjs",
"check": "npm run typecheck && npm run lint && npm run check:project && npm run secret:scan",
"test": "npm run build && node --test --test-reporter=spec dist/test/webhook-rescue.test.js",
"ci": "npm run check && npm test"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^20.19.23",
"typescript": "^5.9.3",
"yaml": "^2.8.1"
}
}