forked from sbbqq/LibertyHosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "reflare",
"type": "module",
"version": "1.1.4",
"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": {
"clean": "rimraf dist",
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --fix",
"prepack": "npm run clean && 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.20230404.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.2",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"miniflare": "^2.13.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.4",
"vitest": "^0.30.1",
"vitest-environment-miniflare": "^2.13.0"
}
}