forked from sbbqq/LibertyHosts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "rocket-booster",
"version": "1.3.0",
"description": "Serverless reverse proxy and load balancing library built for Cloudflare Workers.",
"main": "dist/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"test": "jest",
"lint": "eslint --fix --ext .ts",
"build": "webpack",
"prepack": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/booster-labs/rocket-booster.git"
},
"keywords": [
"serverless",
"proxy",
"workers",
"cloudflare",
"reverse-proxy"
],
"author": "Xiaoyang Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/booster-labs/rocket-booster/issues"
},
"homepage": "https://booster.js.org",
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@types/jest": "^27.0.1",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"eslint-webpack-plugin": "^3.0.1",
"jest": "^27.0.6",
"service-worker-mock": "^2.0.5",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}