-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 907 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
{
"name": "chesstron",
"version": "1.0.15",
"description": "Stockfish-powered Node Chess Command Line Tool",
"keywords": [
"chess",
"stockfish",
"cli",
"lichess"
],
"main": "index.js",
"bin": {
"chesstron": "index.js"
},
"scripts": {
"compile": "babel --presets es2015 lib --out-dir src"
},
"author": "Jeff Gladchun <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jgladch/chesstron.git"
},
"preferGlobal": true,
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"chalk": "^1.1.1",
"figlet": "^1.1.1",
"inquirer": "^0.11.0",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"node-lichess": "^1.0.3",
"progress": "^1.1.8",
"stockfish": "^6.0.5"
},
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.21"
},
"license": "MIT"
}