-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "@sabaki/boardmatcher",
"version": "1.3.0",
"description": "Finds patterns & shapes in Go board arrangements and names moves.",
"main": "./src/main.js",
"scripts": {
"test": "tap ./tests/*.test.js",
"format": "prettier \"**/*.{js,md}\" --write",
"format-watch": "onchange \"**/*.{js,md}\" -- prettier {{changed}} --write",
"build": "node ./build.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SabakiHQ/boardmatcher.git"
},
"keywords": [
"go",
"weiqi",
"baduk",
"analyze",
"shape",
"pattern",
"match",
"boardgame",
"find"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/SabakiHQ/boardmatcher/issues"
},
"homepage": "https://github.com/SabakiHQ/boardmatcher",
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always",
"arrowParens": "avoid"
},
"devDependencies": {
"@sabaki/sgf": "^3.4.4",
"onchange": "^6.1.0",
"prettier": "^2.1.2",
"tap": "^14.10.6"
}
}