2026-03-13 14:26:16 +00:00
|
|
|
{
|
|
|
|
|
"name": "railtrack_pro",
|
|
|
|
|
"version": "1.0.0",
|
2026-03-13 21:21:56 +00:00
|
|
|
"description": "A web-based railway construction game featuring track building, junctions, signals, and 3D driver's eye view.",
|
2026-03-13 14:26:16 +00:00
|
|
|
"directories": {
|
|
|
|
|
"test": "test"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2026-03-13 21:21:56 +00:00
|
|
|
"start": "python3 -m http.server 8080",
|
|
|
|
|
"test": "npm run test:unit",
|
|
|
|
|
"test:unit": "jest",
|
|
|
|
|
"test:e2e": "playwright test",
|
|
|
|
|
"test:all": "npm run test:unit && npm run test:e2e",
|
|
|
|
|
"test:coverage": "jest --coverage",
|
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
|
"test:report": "jest --coverage --coverageReporters=html"
|
2026-03-13 14:26:16 +00:00
|
|
|
},
|
2026-03-13 21:21:56 +00:00
|
|
|
"keywords": ["game", "railway", "threejs"],
|
|
|
|
|
"author": "Railtrack Pro Team",
|
2026-03-13 14:26:16 +00:00
|
|
|
"license": "ISC",
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@playwright/test": "^1.58.2",
|
|
|
|
|
"jest": "^30.3.0",
|
2026-03-13 21:21:56 +00:00
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2026-03-13 14:26:16 +00:00
|
|
|
"jsdom": "^28.1.0"
|
|
|
|
|
}
|
|
|
|
|
}
|