draughts
Version:
A javascript draughts library for move generation/validation, piece placement/movement and draw detection
30 lines (29 loc) • 822 B
JSON
{
"name": "draughts",
"version": "0.2.1",
"description": "A javascript draughts library for move generation/validation, piece placement/movement and draw detection",
"main": "draughts.js",
"devDependencies": {
"mocha": "*",
"chai": "*",
"uglify-js": "*"
},
"scripts": {
"test": "./node_modules/.bin/mocha ./tests.js",
"minify": "./node_modules/.bin/uglifyjs draughts.js -c -m --comments 'license' > draughts.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shubhendusaurabh/draughts.js.git"
},
"keywords": [
"checkers",
"draughts"
],
"author": "shubhu",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/shubhendusaurabh/draughts.js/issues"
},
"homepage": "https://github.com/shubhendusaurabh/draughts.js#readme"
}