{
  "name": "random-dungeon-generator",
  "version": "1.0.32",
  "description": "Generate a 2d array with random rooms",
  "main": "dist/index.js",
  "scripts": {
    "commit": "git-cz",
    "test": "jest src/index.test.js --coverage",
    "prebuild": "rm -rf 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",
    "report-coverage": "cat ./coverage/lcov.info | codecov",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Matthew-Burfield/random-dungeon-generator.git"
  },
  "keywords": [
    "JavaScript, Dungeon, Rogue, Like, Rogue-like, Generator, Free Code Camp, FCC"
  ],
  "author": "Matthew Burfield <burfie@hotmail.com> (https://matthew-burfield.github.io/)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Matthew-Burfield/random-dungeon-generator/issues"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "ghooks": {
      "pre-commit": "yarn test"
    }
  },
  "homepage": "https://github.com/Matthew-Burfield/random-dungeon-generator#readme",
  "devDependencies": {
    "babel-cli": "6.24.0",
    "babel-core": "^6.25.0",
    "babel-loader": "^7.1.1",
    "babel-preset-es2015": "6.24.0",
    "babel-preset-stage-2": "^6.24.1",
    "babel-register": "^6.24.1",
    "codecov.io": "^0.1.6",
    "commitizen": "^2.9.6",
    "cz-conventional-changelog": "^2.0.0",
    "eslint": "3.19.0",
    "eslint-config-airbnb-base": "11.2.0",
    "eslint-plugin-import": "2.6.1",
    "eslint-plugin-node": "5.1.0",
    "eslint-plugin-promise": "3.5.0",
    "jest": "^20.0.4",
    "jest-cli": "^20.0.4",
    "npm-run-all": "^4.0.2",
    "semantic-release": "^6.3.6",
    "webpack": "^3.0.0"
  },
  "babel": {
    "presets": [
      "es2015",
      "stage-2"
    ]
  },
  "jest": {
    "testEnvironment": "node",
    "coverageThreshold": {
      "global": {
        "branches": 0,
        "functions": 0,
        "lines": 0,
        "statements": 0
      }
    }
  }
}