40 lines
801 B
JSON
40 lines
801 B
JSON
{
|
|
"name": "tanksjs-server",
|
|
"version": "1.0.0",
|
|
"description": "Node-JS server for multiplayer interactions in the game TanksJS.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "npm run lint && nodemon ./src/index.js",
|
|
"lint": "eslint ."
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gitea.arnweb.nl/arne/TanksJS-Server"
|
|
},
|
|
"keywords": [
|
|
"tanksjs",
|
|
"asdf",
|
|
"game",
|
|
"multiplayer",
|
|
"js",
|
|
"server",
|
|
"express",
|
|
"socket.io"
|
|
],
|
|
"author": {
|
|
"name": "Arne van Iterson",
|
|
"email": "arne@arnweb.nl",
|
|
"url": "https://arnweb.nl"
|
|
},
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"colors": "^1.4.0",
|
|
"express": "^4.17.1",
|
|
"socket.io": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^6.8.0",
|
|
"nodemon": "^2.0.3"
|
|
}
|
|
}
|