Files
wings88/package.json
User 6b437d41cb
Run Tests / test (pull_request) Failing after 35s
fix: Add jest-environment-jsdom for Jest 28 compatibility
2026-03-22 11:22:50 +00:00

29 lines
619 B
JSON

{
"name": "3d-flight-simulator",
"version": "1.0.0",
"description": "3D Flight Simulator with retro 80s aesthetic",
"main": "src/js/main.js",
"scripts": {
"test": "jest",
"test:e2e": "playwright test",
"test:debug": "playwright test --debug",
"test:all": "npm test && npm run test:e2e"
},
"keywords": [
"3d",
"flight",
"simulator",
"threejs"
],
"author": "RetroWeb Games",
"license": "MIT",
"dependencies": {
"three": "^0.135.0"
},
"devDependencies": {
"@playwright/test": "^1.28.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^30.3.0"
}
}