-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 841 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 841 Bytes
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
35
36
37
38
39
40
{
"name": "battleship-game",
"version": "1.0.2",
"description": "Terminal battleship game",
"main": "./bin/game.js",
"scripts": {
"test": ""
},
"bin": {
"battleship-game": "./bin/game.js"
},
"bugs": {
"url": "https://github.com/ricardofbarros/battleship-game/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ricardofbarros/battleship-game.git"
},
"keywords": [
"battleship",
"game"
],
"author": {
"name": "Ricardo Barros",
"email": "ricardofbarros@hotmail.com"
},
"license": "MIT",
"devDependencies": {
"semistandard": "^6.1.2"
},
"dependencies": {
"charm": "^1.0.0",
"figlet": "^1.1.1",
"hashmap": "^2.0.3",
"inquirer": "^0.9.0",
"jsonfile": "^2.2.1",
"prompt": "^0.2.14",
"simple-terminal-menu": "^1.0.0"
}
}