forked from colyseus/colyseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "colyseus",
"version": "0.5.5",
"description": "Multiplayer Game Server for Node.js.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"keywords": [
"multiplayer",
"game",
"networking",
"websockets"
],
"repository": {
"type": "git",
"url": "git://github.com/gamestdio/colyseus.git"
},
"scripts": {
"prepublish": "tsc -d",
"watch": "tsc -d -w",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' usage/Server.ts",
"test": "mocha --require ts-node/register test/**Test.ts",
"typedoc": "typedoc --name Colyseus --mode file --out docs",
"postinstall": "npm run -s donate",
"donate": "echo \"\u001b[35m\u001b[1mLove Colyseus? Support its development by becoming a backer:\u001b[22m\u001b[39m\n > \u001b[34mhttps://opencollective.com/colyseus/donate\u001b[39m\""
},
"engines": {
"node": ">= 4.x"
},
"dependencies": {
"@gamestdio/timeline": "^0.3.5",
"@gamestdio/timer": "^1.1.7",
"@types/debug": "^0.0.29",
"@types/fossil-delta": "^0.2.1",
"@types/ip": "^0.0.29",
"@types/mocha": "^2.2.32",
"@types/msgpack-lite": "^0.1.1",
"@types/node": "^7.0.18",
"@types/shortid": "0.0.29",
"@types/uws": "^0.13.0",
"debug": "^2.6.8",
"fossil-delta": "^0.2.5",
"ip": "^1.1.5",
"memshared": "^0.9.14",
"msgpack-lite": "^0.1.26",
"nonenumerable": "^1.0.1",
"shortid": "^2.2.6",
"url-parse": "^1.1.9",
"uws": "8.14.1"
},
"devDependencies": {
"assert": "^1.3.0",
"benchmark": "^2.1.1",
"express": "^4.13.3",
"mocha": "2.3.2",
"nodemon": "^1.7.1",
"sinon": "^3.2.1",
"ts-node": "^3.2.0",
"typedoc": "^0.7.1",
"typescript": "^2.3.2"
},
"license": "MIT",
"greenkeeper": {
"ignore": [
"mocha",
"ts-node",
"@types/node"
]
}
}