mirror of
https://github.com/DeNNiiInc/Web-Page-Performance-Test.git
synced 2026-04-17 20:05:58 +00:00
- Added Lighthouse and Chrome Launcher dependencies - Created lib/runner.js test runner service - Implemented filesystem storage for test results - Added API endpoints: POST /api/run-test and GET /api/history
30 lines
595 B
JSON
30 lines
595 B
JSON
{
|
|
"name": "web-page-performance-test",
|
|
"version": "1.0.0",
|
|
"description": "Beyond Cloud Technology - Web Page Performance Test",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js"
|
|
},
|
|
"keywords": [
|
|
"performance",
|
|
"testing",
|
|
"web"
|
|
],
|
|
"author": "Beyond Cloud Technology",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"chrome-launcher": "^1.2.1",
|
|
"express": "^4.18.2",
|
|
"lighthouse": "^13.0.1",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
}
|