forked from colyseus/colyseus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 2.77 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@tobspr/colyseus",
"version": "0.14.16",
"description": "Multiplayer Framework for Node.js.",
"main": "./lib/index.js",
"module": "./esm/index.mjs",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "tsc -d && rollup -c rollup.config.js",
"clear": "rimraf lib && rimraf esm",
"watch": "tsc -d -w",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' usage/Server.ts",
"test": "COLYSEUS_SEAT_RESERVATION_TIME=0.3 COLYSEUS_PRESENCE_SHORT_TIMEOUT=300 nyc mocha --require ts-node/register test/**Test.ts test/**/**Test.ts --exit --timeout 15000",
"tslint": "tslint --project .",
"update-contributors": "all-contributors generate",
"prepublishOnly": "npm run clear && npm run build"
},
"author": "Endel Dreyer",
"license": "MIT",
"keywords": [
"colyseus",
"multiplayer",
"netcode",
"realtime",
"networking",
"websockets"
],
"files": [
"lib",
"esm",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git://github.com/colyseus/colyseus.git"
},
"homepage": "https://colyseus.io/",
"engines": {
"node": ">= 12.x"
},
"dependencies": {
"@colyseus/schema": "^1.0.15",
"@gamestdio/timer": "^1.3.0",
"@types/redis": "^2.8.12",
"@types/ws": "^6.0.1",
"debug": "^4.0.1",
"fast-json-patch": "^2.0.5",
"fossil-delta": "^1.0.1",
"internal-ip": "^4.3.0",
"nanoid": "^2.0.0",
"nonenumerable": "^1.0.1",
"notepack.io": "^2.2.0",
"ws": "^7.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@types/debug": "^0.0.31",
"@types/express": "^4.16.1",
"@types/fossil-delta": "^1.0.0",
"@types/koa": "^2.0.49",
"@types/mocha": "^5.2.7",
"@types/node": "^13.13.5",
"@types/sinon": "^4.3.3",
"all-contributors-cli": "^5.4.0",
"benchmark": "^2.1.1",
"colyseus.js": "^0.14.1",
"cors": "^2.8.5",
"express": "^4.16.2",
"httpie": "^1.1.2",
"koa": "^2.8.1",
"mocha": "^5.1.1",
"nodemon": "^1.14.8",
"nyc": "^14.1.1",
"rimraf": "^2.7.1",
"rollup": "^2.41.0",
"rollup-plugin-node-externals": "^2.2.0",
"sinon": "^4.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.9.6"
},
"optionalDependencies": {
"mongoose": "^5.11.3",
"redis": "^2.8.0"
},
"greenkeeper": {
"ignore": [
"mocha",
"ts-node",
"nodemon",
"@types/node",
"@types/mocha",
"@types/sinon",
"typedoc",
"sinon",
"benchmark"
]
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src",
"test"
],
"reporter": [
"html",
"lcov"
],
"all": true
}
}