forked from bguala/edimbrujo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 804 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
{
"name": "basic-mmo-phaser",
"version": "1.0.0",
"description": " Very basic multiplayer online game example made with Phaser, Node.js and Socket.io ",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jerenaux/basic-mmo-phaser.git"
},
"keywords": [
"Phaser",
"Multiplayer",
"game",
"Node.js",
"socket.io"
],
"author": "Jerome Renaux",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jerenaux/basic-mmo-phaser/issues"
},
"homepage": "https://github.com/Jerenaux/basic-mmo-phaser#readme",
"dependencies": {
"express": "^4.15.2",
"socket.io": "^1.7.3",
"system-sleep": "^1.3.6"
}
}