forked from artilleryio/artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "minigun",
"version": "0.0.14",
"description": "Load-testing for HTTP-based applications",
"main": "./bin/minigun",
"scripts": {
"test": "node test/*.js",
"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 cover test/index.js && istanbul check-coverage"
},
"keywords": [
"load testing",
"stress testing",
"benchmark",
"performance",
"blackbox testing"
],
"author": "Hassy Veldstra <[email protected]>",
"license": "ISC",
"preferGlobal": true,
"man": "./man/minigun.1",
"bin": {
"minigun": "./bin/minigun"
},
"repository": {
"type": "git",
"url": "https://github.com/artilleryio/minigun.git"
},
"bugs": {
"url": "https://github.com/artilleryio/minigun/issues",
"email": "[email protected]"
},
"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": "latest",
"open": "0.0.5"
},
"devDependencies": {
"eslint": "^0.21.2",
"istanbul": "^0.3.14",
"pre-commit": "^1.0.7",
"tape": "^4.0.0"
},
"pre-commit": [
"is_linted",
"is_formatted"
]
}