forked from mikolalysenko/mudb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
70
71
72
73
74
75
{
"name": "mudb",
"version": "0.28.3",
"description": "Real-time database for multiplayer games",
"scripts": {
"build": "tsc",
"clean": "ls -F src | grep / | xargs rm -rf coverage *.d.ts *.js *.js.map",
"coverage": "f(){ nyc tape -r ts-node/register src/${1:-\\*}/test/*.ts; }; f",
"link": "npm link && npm run clean && npm run build",
"release": "npm run test-all && npm run clean && npm run build && npm publish",
"test": "f(){ tape -r ts-node/register src/${1:-\\*}/test/${2:-\\*}.ts; }; f",
"test-all": "npm test socket/\\* && npm test",
"watch": "tsc -w"
},
"main": "index.js",
"browser": {
"rpc/http/client": "rpc/http/client-browser"
},
"repository": {
"type": "git",
"url": "https://github.com/mikolalysenko/mudb.git"
},
"keywords": [
"mudb",
"real-time",
"multiplayer",
"game",
"network",
"server",
"client",
"replicate",
"schema",
"binary",
"buffer",
"stream",
"websocket",
"tcp",
"udp"
],
"author": "Mikola Lysenko",
"contributors": [
"He Diyi <[email protected]> (https://github.com/hediyi/)"
],
"license": "MIT",
"dependencies": {
"content-type": "^1.0.4",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v15.11.0",
"ws": "^7.1.2"
},
"devDependencies": {
"@types/node": "^8.10.38",
"@types/tape": "^4.2.32",
"browserify": "^16.2.3",
"nyc": "^15.0.0",
"tape": "^4.9.1",
"tape-run": "^4.0.0",
"ts-node": "^7.0.1",
"tsify": "^4.0.1",
"tslint": "^5.11.0",
"typescript": "^3.7.4",
"typescript-tslint-plugin": "^0.1.0",
"webworkify": "^1.5.0"
},
"nyc": {
"cache": true,
"report-dir": "./coverage",
"temp-dir": "./coverage/.nyc_output",
"extension": [
".ts"
],
"reporter": [
"html"
]
}
}