-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "@sabaki/sgf",
"version": "3.4.7",
"description": "A library for parsing SGF files.",
"main": "./src/main.js",
"scripts": {
"test": "tap tests/*.test.js",
"format": "prettier \"**/*.{js,md}\" --write",
"format-watch": "onchange \"**/*.{js,md}\" -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SabakiHQ/sgf.git"
},
"keywords": [
"sgf",
"go",
"baduk",
"weiqi",
"boardgame",
"parser",
"file"
],
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/SabakiHQ/sgf/issues"
},
"homepage": "https://github.com/SabakiHQ/sgf",
"dependencies": {
"doken": "^1.0.0"
},
"devDependencies": {
"iconv-lite": "^0.4.24",
"jschardet": "^2.1.0",
"onchange": "^6.1.0",
"prettier": "1.19.1",
"tap": "^14.10.6"
},
"optionalDependencies": {
"iconv-lite": "0.4.x",
"jschardet": ">=1.0 <3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
}
}