-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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": "@socialgorithm/tic-tac-toe",
"version": "10.6.0",
"description": "Socialgorithm TicTacToe Game Server",
"main": "dist/index.js",
"bin": "bin/index.js",
"scripts": {
"start": "node dist/index.js",
"start:dev": "nodemon",
"dev": "tsc && ts-node -r tsconfig-paths/register --files src/index.ts",
"start:opts": "tsc && ts-node bin/index.js",
"build": "tsc",
"test": "npm run lint",
"lint": "tslint -p tsconfig.json -t stylish 'src/**/*.ts'",
"docs": "typedoc --out docs/ --mode modules ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socialgorithm/tic-tac-toe.git"
},
"keywords": [
"socialgorithm",
"tic",
"tac",
"toe",
"tic-tac-toe",
"game",
"server"
],
"author": "Socialgorithm",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">= 16"
},
"bugs": {
"url": "https://github.com/socialgorithm/tic-tac-toe/issues"
},
"homepage": "https://github.com/socialgorithm/tic-tac-toe#readme",
"dependencies": {
"@socialgorithm/game-server": "^10.6.0",
"@socialgorithm/ultimate-ttt": "^10.2.1",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"debug": "^4.3.3"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^16.7.10",
"cross-env": "^7.0.3",
"mocha": "^9.1.4",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"tslint": "^5.20.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
}
}