forked from colyseus/colyseus.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "colyseus.js",
"version": "0.9.14",
"description": "Multiplayer Game Client for the Browser",
"keywords": [
"multiplayer",
"mmo",
"networking",
"websockets"
],
"repository": {
"type": "git",
"url": "git://github.com/gamestdio/colyseus.js.git"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "mocha test/*.ts --require ts-node/register",
"build": "webpack --env.production",
"watch": "tsc -w",
"prepublish": "tsc && npm run build",
"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": ">= 5.x"
},
"dependencies": {
"@gamestdio/clock": "^1.1.0",
"@gamestdio/signals": "^1.0.0",
"@gamestdio/state-listener": "^3.1.0",
"@gamestdio/websocket": "^0.2.8",
"fossil-delta": "^1.0.0",
"notepack.io": "^2.1.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/fast-json-patch": "^1.0.4",
"@types/fossil-delta": "^1.0.0",
"@types/mocha": "^2.2.44",
"@types/msgpack-lite": "^0.1.1",
"benchmark": "^2.1.4",
"chai": "^3.5.0",
"mocha": "^5.1.1",
"msgpack-lite": "^0.1.20",
"node-localstorage": "^1.3.1",
"nodemon": "^1.17.4",
"ts-loader": "^2.3.7",
"ts-node": "^6.0.3",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"uglify-js": "^2.6.1",
"webpack": "^3.6.0"
}
}