-
-
Notifications
You must be signed in to change notification settings - Fork 328
/
package.json
77 lines (77 loc) · 1.89 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "autocannon",
"version": "8.0.0",
"description": "Fast HTTP benchmarking tool written in Node.js",
"main": "autocannon.js",
"bin": {
"autocannon": "autocannon.js"
},
"scripts": {
"test": "standard && tap test/serial/*.test.js 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]>",
"Donald Robertson <[email protected]",
"Salman Mitha <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/autocannon/issues"
},
"homepage": "https://github.com/mcollina/autocannon#readme",
"devDependencies": {
"ansi-regex": "^5.0.1",
"bl": "^6.0.0",
"busboy": "^0.3.1",
"pre-commit": "^1.1.2",
"proxyquire": "^2.1.3",
"sinon": "^15.0.0",
"split2": "^4.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"why-is-node-running": "^2.3.0"
},
"dependencies": {
"@minimistjs/subarg": "^1.0.0",
"chalk": "^4.1.0",
"char-spinner": "^1.0.1",
"cli-table3": "^0.6.0",
"color-support": "^1.1.1",
"cross-argv": "^2.0.0",
"form-data": "^4.0.0",
"has-async-hooks": "^1.0.0",
"hdr-histogram-js": "^3.0.0",
"hdr-histogram-percentiles-obj": "^3.0.0",
"http-parser-js": "^0.5.2",
"hyperid": "^3.0.0",
"lodash.chunk": "^4.2.0",
"lodash.clonedeep": "^4.5.0",
"lodash.flatten": "^4.4.0",
"manage-path": "^2.0.0",
"on-net-listen": "^1.1.1",
"pretty-bytes": "^5.4.1",
"progress": "^2.0.3",
"reinterval": "^1.1.0",
"retimer": "^3.0.0",
"semver": "^7.3.2",
"timestring": "^6.0.0"
}
}