forked from artilleryio/artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "artillery",
"version": "1.3.8",
"description": "Load-testing for HTTP and WebSocket-based applications",
"main": "./bin/artillery",
"engines": {
"node": ">= 4.2.0"
},
"scripts": {
"test": "bash test/runner.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": "MPL-2.0",
"preferGlobal": true,
"man": "./man/artillery.1",
"bin": {
"artillery": "./bin/artillery"
},
"repository": {
"type": "git",
"url": "https://github.com/shoreditch-ops/artillery.git"
},
"bugs": {
"url": "https://github.com/shoreditch-ops/artillery/issues",
"email": "npm@veldstra.org"
},
"dependencies": {
"artillery-core": "1.5.3",
"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",
"moment": "2.11.2",
"open": "0.0.5",
"rc": "^1.1.6",
"tmp": "0.0.28",
"yamljs": "^0.2.4"
},
"devDependencies": {
"bats": "^0.4.2",
"eslint": "^0.21.2",
"good": "^6.4.0",
"good-console": "^5.2.0",
"hapi": "^12.1.0",
"istanbul": "^0.3.14",
"jscs": "^2.3.0",
"pre-commit": "^1.0.7",
"tape": "^4.0.0",
"uuid": "^2.0.1"
},
"pre-commit": [
"is_linted"
]
}