-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 927 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 927 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@p-j/eapi-middleware-errorhandler",
"version": "1.1.1",
"description": "An Error Handler middleware to work within an EAPI app. Check worker-eapi-template for context.",
"license": "MIT",
"author": "Jérémie Parker <hi@pkr.sh>",
"homepage": "https://github.com/p-j/eapi/tree/main/packages/eapi-middleware-errorhandler",
"keywords": [
"eapi",
"workers",
"cloudflare",
"cloudflare-workers",
"middleware",
"error",
"exception"
],
"repository": {
"type": "git",
"url": "git+https://github.com/p-j/eapi.git"
},
"main": "dist/withErrorHandler.js",
"types": "dist/withErrorHandler.d.ts",
"devDependencies": {
"@cloudflare/workers-types": "2.2.2",
"@p-j/eapi-types": "1.0.0"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"../../jest.setup.ts"
]
},
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "jest"
}
}