-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "bench-rest-jonahss",
"description": "bench-rest - benchmark REST (HTTP/HTTPS) API's. Node.js client module for easy load testing / benchmarking REST API' using a simple structure/DSL can create REST flows with setup and teardown and returns (measured) metrics.",
"version": "2.0.0",
"author": "Jeff Barczewski <jeff.barczewski@gmail.com>",
"repository": {
"type": "git",
"url": "http://github.com/jonahss/bench-rest.git"
},
"bugs": {
"url": "http://github.com/jonahss/bench-rest/issues"
},
"license": "MIT",
"main": "lib/bench-rest",
"engines": {
"node": ">=0.10"
},
"dependencies": {
"async": "^2.0.1",
"commander": "^2.9.0",
"measured": "^1.0.2",
"progress2": "~0.1.1",
"request": "^2.75.0"
},
"devDependencies": {
"accum": "^0.3.6",
"chai": "^3.4.0",
"chai-stack": "~1.3.1",
"hapi": "^15.1.1",
"mocha": "^3.1.0"
},
"bin": "bin/bench-rest",
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/*.mocha.js"
},
"keywords": [
"benchmarking",
"benchmark",
"bench",
"REST",
"http",
"https",
"metrics",
"measured",
"async",
"request",
"load testing",
"client",
"DSL"
]
}