{
  "main": "engine.js",
  "name": "black-horse",
  "version": "0.6.3",
  "description": "Chess engine built in Javascript using the alpha-beta algorithm",
  "author": "Rui Cardoso",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/redsoul/black-horse/issues"
  },
  "scripts": {
    "test": "jest",
    "lint": "./node_modules/.bin/eslint specs/* src/* engine.js",
    "postinstall": "node checkVersion.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/redsoul/black-horse.git"
  },
  "jest": {
    "testRegex": "(/specs/.*|(\\.|/)(spec))\\.js$",
    "testEnvironment": "node"
  },
  "keywords": [
    "chess",
    "chess engine",
    "minimax",
    "alpha-beta",
    "algebraic notation",
    "game",
    "artificial intelligence"
  ],
  "devDependencies": {
    "babel-eslint": "^10.1.0",
    "eslint": "^7.19.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-prettier": "^3.3.1",
    "jest": "^26.6.0",
    "prettier": "^2.2.1"
  },
  "dependencies": {
    "lodash": "^4.17.20",
    "semver": "^5.7.1"
  },
  "engines": {
    "node": ">=12"
  }
}
