forked from johnfontaine/chess-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
59
60
61
62
{
"name": "chess-opening-book-reader",
"version": "0.1.0",
"description": "Chess opening book reader",
"type": "module",
"scripts": {
"main": "index.js",
"lint": "eslint src test",
"test": "mocha --timeout 60000 test/*",
"test:watch": "nodemon -w test/ -w src/ -x \"clear && npm run test\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/gmcheems-org/chess-opening-book-reader.git"
},
"browserslist": "> 0.25%, not dead",
"keywords": [
"chess",
"polyglot",
"opening book",
"pgn",
"chess openings",
"fen",
"epd",
"eco",
"abk",
"uci",
"ctg",
"xboard",
"winboard",
"chessbase"
],
"author": "GM Cheems <gmcheems@proton.me>",
"contributors": [
{
"name": "John Fontaine",
"email": "jsfontaine@gmail.com",
"url": "https://www.johnfontaine.com/"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gmcheems-org/chess-opening-book-reader/issues"
},
"homepage": "https://github.com/gmcheems-org/chess-opening-book-reader#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-unicorn": "^45.0.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1"
},
"dependencies": {
"chess.js": "^0.13.4",
"events": "^3.3.0",
"int64-buffer": "1.0.1"
}
}