-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.25 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
{
"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": ">=6"
},
"scripts": {
"readme": "docker-compose up --build",
"start": "docker-compose up --build"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"benchmark": "^2.1.4",
"got": "^9.6.0",
"isomorphic-fetch": "^2.2.1",
"ky": "^0.14.0",
"ky-universal": "^0.3.0",
"node-fetch": "^2.6.0",
"req-fast": "^0.2.18",
"request": "^2.88.0",
"superagent": "^5.1.0",
"text-table": "^0.2.0"
},
"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
}
]
}
}
}