forked from artilleryio/artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) Β· 1.79 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
70
71
72
73
74
{
"name": "artillery",
"version": "1.6.0-4",
"description": "Load-testing for HTTP and WebSocket-based applications",
"main": "./lib",
"engines": {
"node": ">= 4.2.0"
},
"scripts": {
"test": "bash test/runner.sh",
"is_linted": "find . -name '*.js' | grep -v node_modules | grep -v coverage | xargs eslint",
"coverage": "npm_config_coverage=y npm test && istanbul report html text-summary"
},
"keywords": [
"load testing",
"stress testing",
"benchmark",
"performance",
"blackbox testing"
],
"author": "Hassy Veldstra <[email protected]>",
"contributors": [
"Kieran Gorman (https://github.com/kjgorman)",
"Antony Jones (https://github.com/antony)"
],
"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": "[email protected]"
},
"dependencies": {
"arrivals": "^2.0.2",
"artillery-core": "4.4.1",
"artillery-plugin-statsd": "^2.2.0",
"async": "1.5.2",
"chalk": "1.1.3",
"commander": "2.9.0",
"csv-parse": "^0.1.1",
"debug": "2.2.0",
"lodash": "4.17.2",
"moment": "2.11.2",
"open": "0.0.5",
"ora": "^1.3.0",
"rc": "^1.1.6",
"tmp": "0.0.28",
"try-require": "^1.2.1",
"update-notifier": "^2.1.0",
"yaml-js": "0.1.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",
"pre-commit": "^1.0.7",
"prettier": "^1.5.2",
"tape": "^4.0.0",
"uuid": "^2.0.1"
},
"pre-commit": [
"is_linted"
]
}