-
-
Notifications
You must be signed in to change notification settings - Fork 756
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.02 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.02 KB
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
{
"name": "benchmarks",
"scripts": {
"bench": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench:run",
"bench:h2": "PORT=3052 concurrently -k -s first npm:bench:server:h2 npm:bench:run:h2",
"bench-post": "PORT=3042 concurrently -k -s first npm:bench:server npm:bench-post:run",
"bench:server": "node ./server.js",
"bench:server:h2": "node ./server-http2.js",
"prebench:run": "node ./wait.js",
"bench:run": "SAMPLES=100 CONNECTIONS=50 node ./benchmark.js",
"bench:run:h2": "SAMPLES=100 CONNECTIONS=50 node ./benchmark-http2.js",
"prebench-post:run": "node ./wait.js",
"bench-post:run": "SAMPLES=100 CONNECTIONS=50 node ./post-benchmark.js"
},
"dependencies": {
"axios": "^1.6.7",
"concurrently": "^9.0.0",
"cronometro": "^5.3.0",
"got": "^14.2.0",
"mitata": "^1.0.4",
"node-fetch": "^3.3.2",
"request": "^2.88.2",
"superagent": "^10.0.0",
"tinybench": "^5.0.0",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.61.0",
"wait-on": "^9.0.1"
}
}