forked from artilleryio/artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) Β· 2.38 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "artillery",
"version": "1.6.0-22",
"description": "Flexible and powerful toolkit for load and functional testing",
"main": "./lib",
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "bash test/runner.sh && bash test/core/run.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 <h@veldstra.org>",
"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": "npm@veldstra.org"
},
"dependencies": {
"JSONPath": "^0.11.2",
"arrivals": "^2.1.1",
"artillery-plugin-statsd": "^2.2.0",
"async": "^1.5.2",
"chalk": "1.1.3",
"cheerio": "^1.0.0-rc.2",
"commander": "2.9.0",
"csv-parse": "^0.1.4",
"debug": "^2.2.0",
"deep-equal": "^1.0.1",
"esprima": "^4.0.0",
"filtrex": "^0.5.4",
"js-yaml": "^3.10.0",
"jsck": "^0.3.2",
"lodash": "^4.17.2",
"moment": "^2.22.1",
"nanotimer": "^0.3.15",
"opn": "^5.3.0",
"ora": "^1.3.0",
"pidusage": "^1.1.6",
"rc": "^1.1.6",
"request": "^2.85.0",
"rolex": "^1.1.2",
"socket.io-client": "^2.1.0",
"socketio-wildcard": "^2.0.0",
"stats-lite": "^2.1.0",
"tmp": "0.0.28",
"tough-cookie": "^2.3.4",
"traverse": "^0.6.6",
"try-require": "^1.2.1",
"update-notifier": "^2.1.0",
"uuid": "^2.0.3",
"ws": "^5.1.1"
},
"devDependencies": {
"bats": "^0.4.2",
"bcrypt": "^2.0.1",
"cookie-parser": "^1.4.3",
"eslint": "^0.21.2",
"express": "^4.16.3",
"good": "^6.6.3",
"good-console": "^5.3.2",
"hapi": "^17.5.2",
"hapi-auth-basic": "^5.0.0",
"istanbul": "^0.3.22",
"nock": "^9.2.5",
"pre-commit": "^1.2.2",
"prettier": "^1.5.2",
"sinon": "^4.5.0",
"socket.io": "^2.1.0",
"tape": "^4.9.0"
},
"pre-commit": []
}