forked from AskeFC/snake-multiplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 835 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": "snake-multiplayer",
"version": "2.0.0",
"description": "Multiplayer snake game",
"main": "app.js",
"scripts": {
"test": "node --debug --use_strict app.js",
"inspect": "node --inspect app.js",
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AskeFC/snake-multiplayer.git"
},
"dependencies": {
"colors": ">=1.4.0",
"ejs": ">=3.1.5",
"express": ">=4.17.1",
"socket.io": ">=2.3.0",
"socketio-wildcard": ">=2.0.0",
"ws": ">=7.3.1"
},
"keywords": [],
"author": "AntonUden",
"contributors": [
{
"name": "Aske Færch Christensen",
"email": "[email protected]",
"url": "https://AskeFC.net"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AskeFC/snake-multiplayer/issues"
}
}