-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "edge-master",
"version": "0.9.3",
"description": "A Micro Framework for Edges",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/sharif3271/edge-master",
"repository": {
"type": "git",
"url": "https://github.com/sharif3271/edge-master"
},
"author": "Sharif Eiri",
"license": "MIT License",
"scripts": {
"build": "tsc",
"build:minify": "tsc && cd dist && esbuild *.js --minify --outdir=. --allow-overwrite",
"test": "jest --verbose --detectOpenHandles",
"test:coverage": "jest --coverage --detectOpenHandles",
"publish": "npm run test:coverage && npm run build:minify && npm publish"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.20230419.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230419.0",
"@types/jest": "^29.5.4",
"@types/mocha": "^10.0.1",
"jest": "^29.6.4",
"mocha": "^10.2.0",
"ts-jest": "^29.1.1",
"jest-fetch-mock": "3.0.3",
"isomorphic-fetch": "3.0.0",
"esbuild": "0.19.2",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"cloudflare",
"AZURE",
"AWS",
"lambda",
"serverless",
"web-workers",
"JavaScript-framework",
"microservices",
"routing",
"HTTP-handling",
"serverless-functions",
"serverless-architecture",
"worker-framework",
"API-gateway",
"content-generation",
"caching"
]
}