-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 2.91 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
{
"name": "browserup",
"version": "1.1.36",
"type": "module",
"license": "AGPL-3.0",
"homepage": "http://browserup.com",
"main": "lib/browserup_cli.mjs",
"bin": {
"browserup": "./bin/browserup.mjs"
},
"description": "Command line interface for BrowserUp, the first DRY load testing tool. Load test with your own Playwright, Postman, Selenium, or API client code.",
"repository": {
"type": "git",
"url": "https://github.com/browserup/browserup-cli.git"
},
"bugs": {
"url": "https://github.com/browserup/browserup-cli/issues",
"email": "[email protected]"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"windows-test": "set NODE_OPTIONS=--experimental-vm-modules && jest",
"prepare": "node prepare.mjs"
},
"keywords": [
"browserup",
"load",
"DRY Load Testing",
"load test",
"load testing",
"performance test",
"performance testing",
"stress testing",
"stress test",
"core web vitals",
"web vitals",
"Playwright load test",
"Playwright load testing",
"Playwright performance testing",
"Selenium load testing",
"Postman load testing",
"C Sharp load testing",
"REST API load testing"
],
"jest": {
"moduleFileExtensions": [
"mjs",
"js",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"testMatch": [
"<rootDir>/tests/**/*.{spec,test}.mjs"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/cypress/"
],
"transform": {},
"transformIgnorePatterns": [
"\\.pnp\\.[^\\/]+$"
]
},
"dependencies": {
"@aws-sdk/client-auto-scaling": "^3.363.0",
"@aws-sdk/client-cloudformation": "^3.363.0",
"@aws-sdk/client-ec2": "^3.363.0",
"@aws-sdk/client-ssm": "^3.363.0",
"@babel/core": "^7.22.5",
"@jest/core": "^29.5.0",
"@lifeomic/attempt": "^3.0.3",
"async-await-retry": "^2.0.1",
"axios": "^1.4.0",
"child_process": "^1.0.2",
"commander": "^11.0.0",
"csv-parse": "^5.4.0",
"docker-compose": "^0.24.1",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^11.1.1",
"is-port-reachable": "^4.0.0",
"js-yaml": "^4.1.0",
"jsonschema": "^1.4.1",
"loglevel": "^1.8.1",
"needle": "^3.2.0",
"neo-blessed": "^0.2.0",
"neo-blessed-contrib": "github:ericbeland/neo-blessed-contrib#master",
"net": "^1.0.2",
"node-fetch": "^3.3.1",
"npm": "^9.7.2",
"ora": "^7.0.1",
"path": "^0.12.7",
"retry-axios": "^3.0.0",
"selenium-webdriver": "^4.10.0",
"semver": "^7.5.3",
"strip-ansi": "^7.1.0",
"tar": "^6.1.15",
"uuid": "^9.0.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.5.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.5.0"
},
"overrides": {
"semver": "^7.5.3"
}
}