forked from mcollina/autocannon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
{
"name": "autocannon",
"version": "3.2.1",
"description": "Fast HTTP benchmarking tool written in Node.js",
"main": "autocannon.js",
"bin": {
"autocannon": "autocannon.js"
},
"scripts": {
"test": "standard && tap --timeout 45 test/*.test.js",
"standard:fix": "standard --fix"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/autocannon.git"
},
"keywords": [
"http",
"soak",
"load",
"fast",
"wrk",
"ab",
"test"
],
"author": "Matteo Collina <[email protected]>",
"contributors": [
"Glen Keane <[email protected]> (http://glenkeane.me/)",
"Donald Robertson <[email protected]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/autocannon/issues"
},
"homepage": "https://github.com/mcollina/autocannon#readme",
"devDependencies": {
"bl": "^3.0.0",
"pre-commit": "^1.1.2",
"split2": "^3.1.0",
"standard": "^12.0.0",
"tap": "^12.6.0"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"color-support": "^1.1.1",
"cross-argv": "^1.0.0",
"has-async-hooks": "^1.0.0",
"hdr-histogram-js": "^1.1.4",
"hdr-histogram-percentiles-obj": "^2.0.0",
"http-parser-js": "^0.5.0",
"hyperid": "^2.0.2",
"manage-path": "^2.0.0",
"minimist": "^1.2.0",
"on-net-listen": "^1.1.1",
"pretty-bytes": "^5.1.0",
"progress": "^2.0.3",
"reinterval": "^1.1.0",
"retimer": "^2.0.0",
"timestring": "^5.0.1"
}
}