-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 954 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 954 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
38
39
{
"name": "@p-j/eapi-util-fetcheventhandler",
"version": "1.1.0",
"description": "EAPI utility function that make the whole middleware stack work.",
"license": "MIT",
"author": "Jérémie Parker <hi@pkr.sh>",
"homepage": "https://github.com/p-j/eapi/tree/main/packages/eapi-util-fetcheventhandler",
"keywords": [
"eapi",
"workers",
"cloudflare",
"cloudflare-workers",
"middleware",
"utility"
],
"repository": {
"type": "git",
"url": "git+https://github.com/p-j/eapi.git"
},
"main": "dist/fetchEventHandler.js",
"types": "dist/fetchEventHandler.d.ts",
"devDependencies": {
"@cloudflare/workers-types": "2.2.2",
"@p-j/eapi-types": "1.0.0"
},
"dependencies": {
"@p-j/eapi-util-applymiddlewares": "^1.1.0"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"../../jest.setup.ts"
]
},
"scripts": {
"build": "rimraf ./dist && tsc",
"test": "jest"
}
}