-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 908 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
35
36
{
"name": "nodepirates",
"version": "1.0.0",
"description": "A special version of Battleship in NodeJS where you program the player instead of the game itself. The matchmaker then selects two players in a ranked game and lets them fight against each other.",
"main": "index.js",
"scripts": {
"test": "mocha ./test/*.test.js"
},
"keywords": [
"NodeJS",
"Battleship",
"Player",
"Game",
"CoderDojo"
],
"author": "CoderDojo Horn",
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"bson": "^3.0.2",
"dockerode": "^2.5.5",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-fileupload": "^0.4.0",
"extract-zip": "^1.6.7",
"mongodb": "^3.0.10",
"request": "^2.87.0",
"rimraf": "^2.6.2",
"tar-fs": "^1.16.2",
"web-request": "^1.0.7"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}