35 lines
829 B
JSON
35 lines
829 B
JSON
{
|
|
"name": "snake-game-cicd",
|
|
"version": "1.0.0",
|
|
"description": "Snake Game for CI/CD Pipeline Testing",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "nodemon server.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"build": "echo 'Build completed successfully!'",
|
|
"lint": "eslint src/",
|
|
"lint:fix": "eslint src/ --fix"
|
|
},
|
|
"keywords": ["snake", "game", "cicd", "nodejs", "html5"],
|
|
"author": "CI/CD Demo",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"helmet": "^7.0.0",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.5.0",
|
|
"nodemon": "^3.0.1",
|
|
"eslint": "^8.45.0",
|
|
"supertest": "^6.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
}
|