{
  "name": "tic-tac-toe-engine",
  "version": "0.3.2",
  "description": "Business logic of a Tic Tac Toe game.",
  "main": "dist/index.js",
  "scripts": {
    "commit": "git-cz",
    "test": "exit 0",
    "prebuild": "rimraf dist",
    "build": "npm-run-all --parallel build:*",
    "build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
    "build:umd": "webpack --output-filename index.umd.js",
    "build:umd.min": "webpack --output-filename index.umd.min.js -p",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/509dave16/tic-tac-toe-engine.git"
  },
  "keywords": [
    "tic",
    "tac",
    "toe",
    "business",
    "logic",
    "driver",
    "engine"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "author": "David S. Fall <davidfall@rocketmail.com> (http://509dave16.github.io/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/509dave16/tic-tac-toe-engine/issues"
  },
  "homepage": "https://github.com/509dave16/tic-tac-toe-engine#readme",
  "devDependencies": {
    "babel-cli": "6.9.0",
    "babel-loader": "6.2.4",
    "babel-preset-stage-2": "6.5.0",
    "commitizen": "2.8.1",
    "cz-conventional-changelog": "1.1.6",
    "ghooks": "1.2.1",
    "npm-run-all": "2.1.1",
    "rimraf": "2.5.2",
    "semantic-release": "4.3.5",
    "webpack": "1.13.1"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "ghooks": {}
  },
  "babel": {
    "presets": [
      "es2015"
    ]
  },
  "dependencies": {
    "babel-preset-es2015": "6.9.0",
    "firebase": "2.4.2",
    "redux": "3.5.2",
    "redux-actions": "0.9.1"
  }
}