-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
{
"name": "@socialgorithm/uabc",
"version": "10.2.1",
"description": "Ultimate Algorithm Battle Client",
"main": "dist/index.js",
"bin": {
"uabc": "bin/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "ts-node -r tsconfig-paths/register --files src/index.ts",
"test": "echo 'No tests available'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socialgorithm/uabc.git"
},
"keywords": [
"ultimate",
"algorithm",
"battle",
"client"
],
"author": "Socialgorithm",
"license": "MIT",
"bugs": {
"url": "https://github.com/socialgorithm/uabc/issues"
},
"homepage": "https://github.com/socialgorithm/uabc#readme",
"dependencies": {
"@socialgorithm/model": "10.2.0",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"socket.io-client": "^4.2.0",
"socket.io-proxy": "^1.0.3"
},
"devDependencies": {
"@types/node": "^16.9.1",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.2"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"**/*.js",
"**/*.d.ts"
],
"require": [
"ts-node/register"
],
"all": true
}
}