-
-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
55 lines (55 loc) · 1.22 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
{
"name": "loadtest",
"version": "8.1.1",
"type": "module",
"description": "Run load tests for your web application. Mostly ab-compatible interface, with an option to force requests per second. Includes an API for automated load testing.",
"homepage": "https://github.com/alexfernandez/loadtest",
"contributors": [
"Alex Fernández <[email protected]>"
],
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/alexfernandez/loadtest"
},
"dependencies": {
"agentkeepalive": "^2.0.3",
"confinode": "^2.1.1",
"https-proxy-agent": "^2.2.1",
"stdio": "0.2.7",
"testing": "^3.1.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"eslint": "^8.47.0",
"microprofiler": "^2.0.0",
"why-is-node-running": "^2.2.2"
},
"keywords": [
"testing",
"test",
"load test",
"load testing",
"http",
"performance",
"black box"
],
"engines": {
"node": ">=16"
},
"bin": {
"loadtest": "bin/loadtest.js",
"testserver-loadtest": "bin/testserver.js"
},
"preferGlobal": true,
"scripts": {
"test": "node test/all.js",
"posttest": "eslint ."
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"private": false
}