-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 846 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 846 Bytes
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
{
"name": "http-request-libs-performance",
"version": "1.0.0",
"description": "Benchmark between Node.js http request libraries",
"keywords": [
"axios",
"libcurl",
"superagent",
"performance",
"benchmark"
],
"license": "MIT",
"author": "Jonathan Cardoso Machado",
"type": "module",
"main": "index.js",
"scripts": {
"context-switching": "node --allow-natives-syntax context-switching.js",
"start": "node --allow-natives-syntax index.js",
"start-server": "PORT=8080 node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"axios": "1.13.1",
"bench-node": "0.12.0",
"benchmark": "2.1.4",
"benny": "3.7.1",
"got": "14.6.1",
"ky": "1.13.0",
"node-libcurl": "5.0.0",
"request": "2.88.2",
"superagent": "10.2.3"
}
}