forked from fdesjardins/node-http-client-bench
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
{
"name": "node-http-client-bench",
"version": "1.4.10",
"description": "Benchmarks for all the popular Node.js HTTP client libraries",
"main": "index.js",
"repository": "fdesjardins/node-http-client-bench",
"author": {
"name": "Forrest Desjardins",
"email": "[email protected]",
"url": "github.com/fdesjardins"
},
"engines": {
"node": ">=14"
},
"scripts": {
"readme": "docker-compose up --build",
"start": "docker-compose up --build"
},
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"benchmark": "^2.1.4",
"got": "^11.8.3",
"isomorphic-fetch": "^3.0.0",
"ky": "^0.31.3",
"ky-universal": "^0.8.2",
"node-fetch": "^2.6.7",
"node-fetch-latest": "npm:node-fetch@^3.2.10",
"req-fast": "^0.2.21",
"superagent": "^8.0.0",
"text-table": "^0.2.0",
"undici": "^5.10.0",
"fetch-h2": "^3.0.2"
},
"devDependencies": {
"standard": "^14.3.1"
},
"eslintConfig": {
"extends": [
"standard"
],
"rules": {
"object-curly-spacing": [
2,
"always"
],
"array-bracket-spacing": [
2,
"always"
],
"func-style": [
2,
"expression"
],
"prefer-arrow-callback": [
2,
{
"allowNamedFunctions": false
}
]
}
}
}