forked from artilleryio/artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 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
55
56
57
58
59
60
61
62
{
"name": "minigun",
"version": "1.2.13",
"description": "Load-testing for HTTP and WebSocket-based applications",
"main": "./bin/minigun",
"engines": {
"node": ">= 4.2.0"
},
"scripts": {
"test": "bats test/test.sh",
"is_formatted": "find . -name '*.js' | grep -v node_modules | grep -v coverage | xargs jscs --preset=google",
"is_linted": "find . -name '*.js' | grep -v node_modules | grep -v coverage | xargs eslint",
"coverage": "ISTANBUL=y npm test && istanbul check-coverage"
},
"keywords": [
"load testing",
"stress testing",
"benchmark",
"performance",
"blackbox testing"
],
"author": "Hassy Veldstra <h@veldstra.org>",
"contributors": [
"Kieran Gorman (https://github.com/kjgorman)"
],
"license": "ISC",
"preferGlobal": true,
"man": "./man/minigun.1",
"bin": {
"minigun": "./bin/minigun"
},
"repository": {
"type": "git",
"url": "https://github.com/shoreditch-ops/minigun.git"
},
"bugs": {
"url": "https://github.com/shoreditch-ops/minigun/issues",
"email": "npm@veldstra.org"
},
"dependencies": {
"async": "^1.0.0",
"cli": "^0.6.6",
"commander": "^2.8.1",
"csv-parse": "^0.1.1",
"debug": "^2.2.0",
"lodash": "^3.9.1",
"minigun-core": "git+https://github.com/startersacademy/minigun-core.git",
"open": "0.0.5",
"yamljs": "^0.2.4"
},
"devDependencies": {
"bats": "^0.4.2",
"eslint": "^0.21.2",
"istanbul": "^0.3.14",
"jscs": "^2.3.0",
"pre-commit": "^1.0.7",
"tape": "^4.0.0"
},
"pre-commit": [
"is_linted"
]
}