{
  "name": "react-slate",
  "version": "0.5.1",
  "description": "Render React CLI apps to TTY terminals",
  "license": "MIT",
  "repository": "https://github.com/zamotany/react-slate",
  "private": false,
  "author": {
    "name": "Paweł Trysła",
    "email": "zamotany.oss@gmail.com"
  },
  "files": [
    "/build",
    "index.js",
    "README.md"
  ],
  "engines": {
    "node": ">=6"
  },
  "scripts": {
    "build:transpile": "babel src --out-dir build --ignore **/__tests__/**",
    "build:clean": "rimraf build",
    "build:watch": "yarn build:transpile --watch",
    "build:flow": "flow-copy-source src build -i '{**/__tests__/**}'",
    "build": "yarn build:clean && yarn build:transpile && yarn build:flow",
    "cp-readme": "cp ../../README.md .",
    "prepublish1": "yarn cp-readme && yarn build"
  },
  "peerDependencies": {
    "react": "16.x"
  },
  "dependencies": {
    "ansi-parser": "^3.2.8",
    "ansi-styles": "^3.2.0",
    "astral-regex": "^1.0.0",
    "chalk": "^2.1.0",
    "cli-spinners": "^1.1.0",
    "fast-memoize": "^2.2.8",
    "fbjs": "^0.8.16",
    "is-fullwidth-code-point": "^2.0.0",
    "mkdirp": "^0.5.1",
    "prop-types": "^15.6.0",
    "react-reconciler": "0.3.0-beta.1",
    "strip-ansi": "^4.0.0"
  },
  "devDependencies": {
    "react": "^16.2.0"
  },
  "babel": {
    "presets": [
      [
        "env",
        {
          "targets": {
            "node": 6
          }
        }
      ],
      "react",
      "stage-2"
    ],
    "plugins": [
      "transform-flow-strip-types",
      "transform-object-rest-spread"
    ],
    "sourceMaps": "inline"
  },
  "eslintConfig": {
    "extends": "callstack-io"
  }
}
