-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 KB
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
{
"name": "@socialgorithm/uatc",
"version": "0.0.1",
"description": "Socialgorithm Tournament Test Client",
"main": "dist/uatc.js",
"scripts": {
"start": "node dist/uatc.js",
"start:dev": "nodemon",
"debug": "npm run build && node --inspect-brk dist/uatc.js",
"dev": "tsc && ts-node -r tsconfig-paths/register --files src/uatc.ts",
"start:opts": "tsc && ts-node bin/uatc.js",
"build": "tsc",
"build:watch": "tsc -w",
"test": "mocha -r ts-node/register src/**/*.spec.ts && npm run lint && npm run build",
"lint": "tslint -p tsconfig.json -t stylish 'src/**/*.ts'",
"lint:fix": "tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts'"
},
"keywords": [
"socialgorithm"
],
"author": "Socialgorithm",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@socialgorithm/model": "^10.2.0",
"@types/command-line-args": "^5.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"@types/uuid": "^8.3.1",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"tslint": "^6.1.1",
"typedoc": "^0.21.9",
"typescript": "^4.4.2"
},
"dependencies": {
"commander": "^8.1.0",
"debug": "^4.3.2",
"socket.io-client": "^4.2.0",
"systeminformation": "^5.8.7",
"tcp-port-used": "^1.0.2",
"uuid": "^8.3.2"
}
}