forked from BobStrogg/box2dweb-multiplayer-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 757 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": "box2dweb-multiplayer-demo",
"version": "0.1.0",
"author": "Chris Cavanagh <nodesupport@chriscavanagh.com>",
"description": "a simple multiplayer Box2DWeb demo using node.js and socket.io",
"contributors": [
{
"name": "Chris Cavanagh",
"email": "npm_b2dmpd@chriscavanagh.com"
}
],
"scripts": {
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/BobStrogg/box2dweb-multiplayer-demo.git"
},
"keywords": [
"box2d",
"node",
"socket"
],
"dependencies" : {
"socket.io" : "0.9.x",
"node-static" : "0.6.x"
},
"bundledDependencies": [
"socket.io",
"node-static"
],
"license": "MIT",
"engines": {
"node": ">=0.8"
}
}