-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 978 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
42
43
{
"name": "@sabaki/immutable-gametree",
"version": "1.9.3",
"description": "An immutable game tree data type.",
"main": "./src/main.js",
"scripts": {
"test": "tap tests/*.test.js",
"format": "prettier \"**/*.{md,js}\" --write",
"format-watch": "onchange \"**/*.{md,js}\" -- prettier {{changed}} --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SabakiHQ/gametree.git"
},
"keywords": [
"sgf",
"game",
"boardgame",
"go",
"weiqi",
"baduk",
"tree",
"datatype",
"immutable"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/SabakiHQ/gametree/issues"
},
"homepage": "https://github.com/SabakiHQ/gametree#readme",
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"devDependencies": {
"onchange": "^6.1.0",
"prettier": "1.19.1",
"tap": "^14.10.6"
}
}