forked from joeyrobert/ceruleanjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.16 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
{
"name": "ceruleanjs",
"version": "0.1.1",
"description": "JavaScript Chess Engine",
"main": "src/xboard.js",
"author": "joeyrobert <[email protected]>",
"license": "GPL-3.0",
"dependencies": {
"ceruleanjs_opening_books": "^1.0.0"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"nexe": "^0.4.2",
"node-inspector": "^0.12.5",
"uglify-js": "^2.6.1"
},
"repository": {
"type": "git",
"url": "https://[email protected]/joeyrobert/ceruleanjs.git"
},
"bin": {
"ceruleanjs": "./src/xboard.js"
},
"scripts": {
"build-windows": "copy /Y node_modules\\ceruleanjs_opening_books\\gm2001.bin dist\\book.bin && nexe -i ./src/xboard.js -o ./dist/ceruleanjs.exe -r 5.3.0",
"build-web": "browserify ./src/xboard.js -o ./dist/ceruleanjs.js -t [ babelify --presets [ es2015 ] ] && uglifyjs --compress -o ./dist/ceruleanjs.min.js -- ./dist/ceruleanjs.js",
"debug": "node-debug ./src/xboard.js",
"test": "mocha --no-timeouts",
"start": "node ./src/xboard.js"
}
}