-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "@akolos/ts-client-server-game-synchronization",
"version": "0.1.68",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"description": "TypeScript Game Client and Server Framework",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"scripts": {
"test": "jest --verbose",
"build:demo:prod": "cd demos && npm i && npm run build",
"test-debug": "node --inspect-brk=0.0.0.0 node_modules/jest/bin/jest.js --runInBand --config jest.config.js",
"build": "rm -rf dist && rollup -c rollup.config.js",
"demo": "cd demos && npm run start",
"publish": "npm publish --access=public",
"start": "npm run demo"
},
"author": "Andrew Kolos",
"license": "APLv2",
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/keyboardjs": "^2.4.1",
"@types/mockdate": "^2.0.0",
"@types/node": "^12.7.3",
"@types/ts-nameof": "^4.2.0",
"jest": "~24.9.0",
"mockdate": "^2.0.5",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.5",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.2",
"ts-jest": "^24.0.2",
"ts-nameof": "^3.2.0",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"tslint": "~5.19.0",
"tslint-clean-code": "^0.2.9",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"tstl": "^2.2.3",
"tsutils": "~3.17.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@akolos/event-emitter": "^2.0.6",
"core-js": "^3.2.1",
"eventemitter3": "^4.0.0",
"exponential-backoff": "^2.1.1",
"interval-task-runner": "^1.0.6",
"keyboardjs": "^2.5.1",
"mheap": "^1.1.0",
"priority-deque": "^1.0.3",
"queue-typescript": "^1.0.1"
}
}