-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 901 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
{
"name": "sinky-ships",
"version": "1.0.0",
"description": "A npm library that allows a user to play a game of battleship against a computer opponent. The game will be interactive through the command line terminal and work with randomly generated battleships.",
"main": "hub.js",
"scripts": {
"test": "jest --verbose --coverage",
"start": "node hub.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/High-Seas-Computer-Company/sinky-ships.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/High-Seas-Computer-Company/sinky-ships/issues"
},
"homepage": "https://github.com/High-Seas-Computer-Company/sinky-ships#readme",
"dependencies": {
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"enquirer": "^2.3.6",
"figlet": "^1.5.0",
"jest": "^26.6.3",
"socket.io": "^4.0.0"
}
}