mirror of
https://github.com/DeNNiiInc/Web-Page-Performance-Test.git
synced 2026-04-18 04:05:58 +00:00
- Added Express server with Git info API endpoint - Created automated deployment scripts (systemd-based, not PM2) - Implemented 5-minute auto-sync with GitHub - Enhanced .gitignore with 200+ credential protection patterns - Added Git version badge to UI footer - Created comprehensive deployment documentation - Added TurnKey Nginx fix for default control panel issue - Included security verification tools All credentials protected and verified safe for deployment.
27 lines
510 B
JSON
27 lines
510 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": {
|
|
"express": "^4.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.0.0"
|
|
}
|
|
}
|