-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.54 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.54 KB
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
{
"name": "comprehensive-performance-test-suite",
"version": "1.0.0",
"description": "Industry-standard performance testing suite including Core Web Vitals, load testing, stress testing, soak testing, and scalability testing",
"main": "master-performance-suite.js",
"scripts": {
"test": "node master-performance-suite.js --comprehensive",
"test:quick": "node master-performance-suite.js --quick",
"test:endurance": "node master-performance-suite.js --endurance",
"test:core-web-vitals": "node core-web-vitals.js",
"test:beyond-core-web-vitals": "node beyond-core-web-vitals.js",
"test:load": "node load-testing.js",
"test:stress": "node stress-testing.js",
"test:soak": "node soak-testing.js",
"test:scalability": "node scalability-testing.js",
"schema-test": "node schema-impact-test.js",
"mcp-server": "node mcp-server.js"
},
"keywords": [
"performance",
"testing",
"core-web-vitals",
"load-testing",
"stress-testing",
"soak-testing",
"scalability-testing",
"web-performance",
"benchmarking"
],
"author": "Performance Test Suite",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"puppeteer": "^21.0.0",
"@modelcontextprotocol/sdk": "^0.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/performance-test-suite"
},
"bugs": {
"url": "https://github.com/your-org/performance-test-suite/issues"
},
"homepage": "https://github.com/your-org/performance-test-suite#readme"
}