forked from 9beach/analyze-sgf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.36 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": "analyze-sgf",
"version": "0.4.8",
"description": "Analyze SGF file by KataGo Parallel Analysis Engine to produce Reviewed SGF file",
"homepage": "https://github.com/9beach/analyze-sgf",
"author": {
"name": "9beach",
"email": "9beach@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9beach/analyze-sgf.git"
},
"bugs": {
"url": "https://github.com/9beach/analyze-sgf/issues"
},
"license": "MIT",
"main": "src/index.js",
"bin": {
"analyze-sgf": "src/index.js"
},
"scripts": {
"all": "npm run lint && npm test && test/index-real.test.sh",
"test": "mocha --color && test/index-mockup.test.sh",
"lint": "eslint ."
},
"preferGlobal": true,
"keywords": [
"katago",
"sgf",
"baduk",
"weiqi",
"go",
"sabaki",
"rsgf",
"cli"
],
"dependencies": {
"@sabaki/sgf": "^3.4.7",
"axax": "^0.2.2",
"chalk": "^4.1.0",
"cli-progress": "^3.9.0",
"iconv-lite": "^0.6.2",
"js-yaml": "^3.13.1",
"jschardet": "^2.2.0",
"posix-getopt": "^1.2.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^6.0.0",
"prettier": "^2.2.1"
}
}