-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "5dchess-notation",
"version": "1.4.4",
"description": "Shad's 5D chess notation, extending PGN to the game '5D chess'",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adri326/5dchess-notation.git"
},
"keywords": [
"chess",
"pgn",
"converter"
],
"author": "Adrien Burgun <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adri326/5dchess-notation/issues"
},
"homepage": "https://github.com/adri326/5dchess-notation#readme",
"bin": {
"5dchess-notation": "./index.js"
},
"exports": {
".": "./index.js",
"./parsers/pgn": {
"require": "./parsers/pgn.js",
"import": "./esm/pgn.js"
},
"./parsers/game": {
"require": "./parsers/game.js",
"import": "./esm/game.js"
}
},
"dependencies": {
"assert": "^2.0.0",
"mocha": "^8.1.1",
"yargs": "^15.4.1"
},
"optionalDependencies": {
"blessed": "^0.1.81"
}
}