-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
67 lines (67 loc) · 1.64 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
63
64
65
66
67
{
"name": "fast-gateway",
"version": "4.0.0",
"description": "A Node.js API Gateway for the masses!",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc mocha test/*.test.js",
"format": "npx standard --fix",
"lint": "npx standard",
"ws-bench": "npx artillery run benchmark/websocket/artillery-perf1.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkyberneees/fast-gateway.git"
},
"keywords": [
"fast",
"http",
"proxy",
"api",
"gateway"
],
"author": "Rolando Santamaria Maso <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkyberneees/fast-gateway/issues"
},
"homepage": "https://github.com/jkyberneees/fast-gateway#readme",
"dependencies": {
"@polka/send-type": "^0.5.2",
"fast-proxy-lite": "^1.1.2",
"http-cache-middleware": "^1.4.1",
"restana": "^5.0.0",
"stream-to-array": "^2.3.0"
},
"files": [
"lib/",
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/express": "^5.0.0",
"artillery": "^2.0.21",
"aws-sdk": "^2.1691.0",
"chai": "^4.5.0",
"consistent-hash": "^1.2.2",
"cors": "^2.8.5",
"express": "^5.0.1",
"express-jwt": "^7.7.8",
"express-rate-limit": "^6.11.2",
"faye-websocket": "^0.11.4",
"fg-multiple-hooks": "^1.3.0",
"helmet": "^7.2.0",
"http-lambda-proxy": "^1.1.4",
"load-balancers": "^1.3.52",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"pem": "^1.14.8",
"prettier": "^3.3.3",
"request-ip": "^3.3.0",
"response-time": "^2.3.3",
"supertest": "^7.0.0"
}
}