forked from Michal-Parteka1337/BattleshipGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 809 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "battleship-game",
"version": "0.1.0",
"description": "Battleships game made in Node.js using Socket.io",
"main": "app.js",
"dependencies": {
"express": "*",
"lodash": "^4.17.4",
"socket.io": "*"
},
"devDependencies": {},
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Michal-Parteka1337",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Michal-Parteka1337/BattleshipGame.git"
},
"keywords": [
"game",
"multiplayer",
"battle",
"battleships",
"sea",
"node"
],
"bugs": {
"url": "https://github.com/Michal-Parteka1337/BattleshipGame/issues"
},
"homepage": "https://github.com/Michal-Parteka1337/BattleshipGame#readme"
}