-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.2 KB
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
{
"name": "api-benchmark",
"version": "1.0.1",
"description": "A simple nodejs tool to measure and compare performances of api services",
"author": "Matteo Figus <matteofigus@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/matteofigus/api-benchmark.git"
},
"bugs": {
"url": "https://github.com/matteofigus/api-benchmark/issues"
},
"homepage": "http://www.api-benchmark.com/",
"keywords": [
"benchmark",
"api",
"performance",
"test",
"load balancer",
"deployment",
"continuous delivery"
],
"main": "index.js",
"engines": {
"node": ">= 4",
"npm": ">=1.2.x"
},
"dependencies": {
"superagent": "3.8.2",
"underscore": "1.12.1",
"give-me": "0.1.0"
},
"devDependencies": {
"http-test-servers": "^2.0.0",
"injectr": "^0.5.1",
"jshint": "^2.9.2",
"mocha": "^8.2.0",
"should": "13.2.1"
},
"scripts": {
"test": "jshint lib test templates index.js && node test/index"
},
"contributors": [
{
"name": "Michael Sanford",
"email": "michaelsanford@users.noreply.github.com"
},
{
"name": "Derek Myers",
"email": "arcticpro@gmail.com"
}
]
}