{
  "name": "ludumjs",
  "version": "3.2.0",
  "description": "Small framework helping to create board games",
  "main": "index.js",
  "author": "Adrien Guéret",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "https://github.com/adrien-gueret/ludumjs.git"
  },
  "scripts": {
    "build": "tsc",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watchAll"
  },
  "devDependencies": {
    "@types/jest": "^23.1.4",
    "@types/socket.io": "^1.4.33",
    "jest": "^22.4.3",
    "parcel-bundler": "^1.7.1",
    "ts-jest": "^22.4.4",
    "typescript": "^3.0.0"
  },
  "jest": {
    "rootDir": "src",
    "coverageDirectory": "../coverage",
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "testURL": "http://my-tests.com",
    "transform": {
      "^.+\\.[jt]s$": "ts-jest"
    },
    "testRegex": "\/__tests__\/.*.ts$",
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "globals": {
      "ts-jest": {
        "tsConfigFile": "../tsconfig.tests.json"
      }
    }
  },
  "dependencies": {
    "socket.io": "^2.1.0",
    "socket.io-client": "^2.1.0"
  }
}