Nicklas766/tic-tac-toe-game-engine

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "tic-tac-toe-stateless-engine",
  "version": "1.0.0",
  "description": "Stateless tic tac toe engine that provides a set of pure functions",
  "main": "lib/index.js",
  "scripts": {
    "test": "jest --coverage",
    "build": "babel src -d lib --ignore src/*.test.js",
    "lint": "eslint src/*.js",
    "lintFix": "eslint src/*.js --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Nicklas766/tic-tac-toe-stateless-engine.git"
  },
  "keywords": [
    "tic-tac-toe"
  ],
  "author": "Nicklas Envall",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/Nicklas766/tic-tac-toe-stateless-engine/issues"
  },
  "homepage": "https://github.com/Nicklas766/tic-tac-toe-stateless-engine#readme",
  "devDependencies": {
    "@babel/cli": "^7.7.7",
    "@babel/core": "^7.7.7",
    "@babel/preset-env": "^7.7.7",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-plugin-import": "^2.19.1",
    "jest": "^24.9.0"
  }
}