forked from colyseus/colyseus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.03 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "colyseus",
"version": "0.9.19",
"description": "Multiplayer Game Server for Node.js.",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"keywords": [
"multiplayer",
"game",
"networking",
"websockets",
"netcode"
],
"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 --exit",
"tslint": "tslint --project .",
"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://www.patreon.com/endel\u001b[39m\""
},
"engines": {
"node": ">= 8.x"
},
"dependencies": {
"@gamestdio/timeline": "^0.3.5",
"@gamestdio/timer": "^1.1.7",
"@types/shortid": "^0.0.29",
"@types/ws": "^6.0.1",
"debug": "^4.0.1",
"fast-json-patch": "^2.0.5",
"fossil-delta": "^1.0.1",
"nonenumerable": "^1.0.1",
"notepack.io": "^2.1.3",
"shortid": "^2.2.13",
"url-parse": "^1.2.0",
"ws": "^6.0.0"
},
"devDependencies": {
"@types/debug": "^0.0.31",
"@types/fossil-delta": "^1.0.0",
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.8",
"@types/redis": "^2.8.6",
"@types/sinon": "^4.3.3",
"all-contributors-cli": "^5.4.0",
"assert": "^1.3.0",
"benchmark": "^2.1.1",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"mocha": "^5.1.1",
"nodemon": "^1.14.8",
"sinon": "^4.0.0",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1"
},
"license": "MIT",
"greenkeeper": {
"ignore": [
"mocha",
"ts-node",
"nodemon",
"@types/node",
"@types/mocha",
"@types/sinon",
"typedoc",
"sinon",
"benchmark"
]
},
"optionalDependencies": {
"memshared": "^0.9.19",
"redis": "^2.8.0"
}
}