-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "@rossmacd/gamesock-server",
"version": "0.4.2",
"description": "A Serverside Networking library to handle the websocket portion of games",
"main": "dist/server.js",
"types": "./dist/server.d.ts",
"scripts": {
"test": "jest --detectOpenHandles --runInBand --coverage && make-coverage-badge",
"build": "tsc -p declaration.tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"lint": "tslint -p tsconfig.json",
"docBuild": "typedoc --mode file --excludePrivate --excludeNotExported --out docs/ src/server.ts",
"doc:html": "typedoc src/ --exclude **/*.test.ts --target ES6 --excludePrivate --excludeNotExported --mode file --out /docs"
},
"author": "Ross MacDonald & Ultan O Nuaillain",
"license": "ISC",
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"express": "^4.17.1",
"jest": "^26.0.1",
"make-coverage-badge": "^1.2.0",
"socket.io-client": "^2.3.0",
"ts-jest": "^25.5.0",
"tslint": "^6.1.2",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"dependencies": {
"socket.io": "^2.3.0",
"timesync": "^1.0.5"
}
}