-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
45 lines (45 loc) · 994 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
37
38
39
40
41
42
43
44
45
{
"name": "@colyseus/proxy",
"version": "0.12.11",
"description": "Proxy and Service Discovery for Colyseus",
"main": "proxy.js",
"scripts": {
"test": "mocha --require ts-node/register test/*Test.ts",
"prepublishOnly": "tsc"
},
"bin": {
"colyseus-proxy": "./bin/proxy"
},
"files": [
"bin",
"*.js",
"README.md"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/colyseus/proxy.git"
},
"keywords": [
"colyseus",
"proxy"
],
"author": "Endel Dreyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/colyseus/proxy/issues"
},
"homepage": "https://github.com/colyseus/proxy#readme",
"devDependencies": {
"@types/http-proxy": "^1.17.3",
"@types/ioredis": "^4.0.10",
"@types/mocha": "^5.2.6",
"@types/node": "^11.12.1",
"mocha": "^6.0.2",
"ts-node": "^8.6.2",
"typescript": "^4.2.2"
},
"dependencies": {
"http-proxy": "^1.18.0",
"ioredis": "^4.9.0"
}
}