forked from wonderingabout/gtp2ogs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "gtp2ogs",
"version": "6.0.1",
"description": "Wrapper to allow Gnu Go Text Protocol speaking Go engines to connect to Online-Go.com and play games",
"main": "gtp2ogs.js",
"files": [
"bot.js",
"config.js",
"connection.js",
"console.js",
"constants.js",
"game.js",
"getArgv.js",
"gtp2ogs.js",
"pv.js",
"gtp/**",
"options/**"
],
"bin": {
"gtp2ogs": "gtp2ogs.js"
},
"dependencies": {
"socket.io-client": "^2.4.0",
"split2": "^3.1.0",
"tracer": "^1.1.2",
"yargs": "^15.4.0"
},
"devDependencies": {
"eslint": "^7.4.0",
"markdownlint": "^0.20.2",
"markdownlint-cli": "^0.22.0",
"mocha": "^8.2.1",
"nyc": "^15.0.1",
"sinon": "^9.0.2"
},
"scripts": {
"test": "nyc mocha",
"lint": "eslint \"./**/*.js\"",
"markdown": "markdownlint **/*.md --ignore node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/online-go/gtp2ogs.git"
},
"keywords": [
"gtp",
"ogs",
"online-go.com",
"go",
"baduk"
],
"author": "Akita Noek <[email protected]> (https://online-go.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/online-go/gtp2ogs/issues"
},
"homepage": "https://github.com/online-go/gtp2ogs"
}