-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 919 Bytes
/
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
{
"name": "@sabaki/gtp",
"version": "3.0.0",
"description": "A Node.js module for handling GTP engines.",
"main": "./src/main.js",
"scripts": {
"test": "cd tests && tap *.test.js",
"format": "prettier **/*.{js,md} --write",
"format-watch": "onchange \"**/*.{js,md}\" -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SabakiHQ/gtp.git"
},
"keywords": [
"gtp",
"go",
"weiqi",
"baduk",
"engine",
"boardgame",
"ai"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/SabakiHQ/gtp/issues"
},
"homepage": "https://github.com/SabakiHQ/gtp",
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"devDependencies": {
"onchange": "^6.1.0",
"prettier": "1.19.1",
"tap": "^14.10.6"
}
}