forked from artilleryio/artillery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.15 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "artillery",
"version": "2.0.0-dev2",
"description": "Modern performance testing toolkit",
"main": "./lib",
"engines": {
"node": ">= 12"
},
"files": [
"/bin",
"/lib",
"/core",
"console-reporter.js",
"util.js",
".artilleryrc"
],
"oclif": {
"commands": "./lib/cmds",
"bin": "artillery",
"_helpClass": "./bin/help",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"test": "bash test/runner.sh && bash test/core/run.sh && bash test/lib/run.sh",
"is_linted": "find . -name '*.js' | grep -v node_modules | xargs eslint",
"commitlint-last-commit": "commitlint --from $(git show HEAD~1 | grep commit | awk '{print $2}')"
},
"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)",
"Joe Schofield (https://github.com/JoeScho)",
"Kush Jain (https://github.com/kush-jain)"
],
"license": "MPL-2.0",
"preferGlobal": true,
"man": "./man/artillery.1",
"bin": {
"artillery": "bin/artillery"
},
"repository": {
"type": "git",
"url": "https://github.com/artilleryio/artillery.git"
},
"bugs": {
"url": "https://github.com/artilleryio/artillery/issues",
"email": "npm@veldstra.org"
},
"dependencies": {
"@datadog/sketches-js": "^1.0.2",
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"agentkeepalive": "^4.1.0",
"arrivals": "^2.1.2",
"async": "^1.5.2",
"ava": "^3.15.0",
"chalk": "1.1.3",
"cheerio": "^1.0.0-rc.2",
"cli-table3": "^0.5.1",
"commander": "2.9.0",
"csv-parse": "^4.4.6",
"debug": "^2.2.0",
"decompress-response": "^6.0.0",
"deep-equal": "^1.0.1",
"deep-for-each": "^3.0.0",
"driftless": "^2.0.3",
"esprima": "^4.0.0",
"eventemitter3": "^4.0.4",
"filtrex": "^0.5.4",
"form-data": "^3.0.0",
"got": "^11.1.2",
"hdr-histogram-js": "^1.1.4",
"hpagent": "^0.1.1",
"js-yaml": "^3.13.1",
"jsck": "^0.3.2",
"jsonpath": "^1.0.2",
"lodash": "^4.17.19",
"moment": "^2.22.1",
"nanotimer": "^0.3.15",
"ora": "^4.0.4",
"socket.io-client": "^2.1.0",
"socketio-wildcard": "^2.0.0",
"tmp": "0.0.28",
"tough-cookie": "^4.0.0",
"try-require": "^1.2.1",
"update-notifier": "^4.1.0",
"uuid": "^8.0.0",
"ws": "^5.1.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@hapi/hapi": "^20.0.1",
"@oclif/dev-cli": "^1.22.2",
"bats": "^0.4.2",
"cookie-parser": "^1.4.3",
"eslint": "^5.14.1",
"express": "^4.16.3",
"globby": "^11.0.0",
"good": "^8.1.1",
"good-console": "^7.1.0",
"hapi-auth-basic": "^5.0.0",
"hpagent": "0.1.1",
"husky": "^4.2.5",
"nock": "^11.8.2",
"prettier": "^1.5.2",
"sinon": "^4.5.0",
"socket.io": "^2.1.0",
"tape": "^4.9.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}