forked from sbbqq/LibertyHosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "reflare",
"version": "1.1.1",
"description": "Lightweight and scalable reverse proxy and load balancing library built for Cloudflare Workers",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --fix --ext .ts",
"prepack": "npm run lint && npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xiaoyang-sde/reflare.git"
},
"keywords": [
"serverless",
"proxy",
"workers",
"cloudflare",
"reverse-proxy"
],
"author": "Xiaoyang Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/xiaoyang-sde/reflare/issues"
},
"homepage": "https://reflare.js.org",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230307.0",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^27.5.1",
"jest-environment-miniflare": "^2.12.1",
"miniflare": "^2.12.1",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
}
}