-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"name": "@tuulbelt/structured-error-handler",
"version": "0.1.0",
"description": "Structured error format with context preservation and serialization",
"main": "src/index.ts",
"type": "module",
"bin": {
"serr": "./src/index.ts",
"structured-error-handler": "./src/index.ts"
},
"scripts": {
"build": "tsc",
"test": "node --import tsx --test test/index.test.ts",
"test:watch": "node --import tsx --test --watch test/index.test.ts",
"bench": "node --import tsx benchmarks/index.bench.ts",
"dogfood": "npm run dogfood:flaky && npm run dogfood:diff",
"dogfood:flaky": "flaky --test 'npm test' --runs 10",
"dogfood:diff": "npx tsx test/dogfood-diff.ts"
},
"keywords": [
"tuulbelt",
"error-handling",
"structured-errors",
"error-context"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tuulbelt/structured-error-handler.git"
},
"homepage": "https://tuulbelt.github.io/tuulbelt/tools/structured-error-handler/",
"bugs": {
"url": "https://github.com/tuulbelt/tuulbelt/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@tuulbelt/test-flakiness-detector": "git+https://github.com/tuulbelt/test-flakiness-detector.git",
"@types/node": "^20.19.27",
"tatami-ng": "^0.8.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}