{
  "name": "covi",
  "version": "0.0.8",
  "description": "A command line tool to visualize test cases in competitive programming.",
  "license": "MIT",
  "author": "remin",
  "files": [
    "dist",
    "main.js",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/rdrgn/covi.git"
  },
  "bin": {
    "covi": "./main.js"
  },
  "scripts": {
    "build": "rm -rf dist build && yarn run build:main && yarn run build:renderer",
    "build:main": "parcel build src/main/main.ts --target node --out-dir dist --no-source-maps",
    "build:renderer": "parcel build src/renderer/index.html --out-dir dist --no-source-maps",
    "start": "parcel src/renderer/index.html",
    "cli": "node dist/main.js",
    "lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
    "fix": "eslint --fix --ext .ts,.tsx --ignore-path .gitignore .",
    "prepublishOnly": "yarn run build"
  },
  "dependencies": {
    "carlo": "^0.9.46",
    "commander": "^3.0.1"
  },
  "devDependencies": {
    "@types/carlo": "^0.9.0",
    "@types/commander": "^2.12.2",
    "@types/prop-types": "^15.7.2",
    "@types/react": "^16.8.24",
    "@types/react-dom": "^16.9.0",
    "@types/react-resize-detector": "^4.0.2",
    "@typescript-eslint/eslint-plugin": "^2.1.0",
    "@typescript-eslint/parser": "^2.1.0",
    "eslint": "^6.3.0",
    "eslint-config-prettier": "^6.2.0",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-prettier": "^3.0.1",
    "eslint-plugin-react": "^7.14.3",
    "husky": "^3.0.5",
    "lint-staged": "^9.2.5",
    "parcel-bundler": "^1.12.3",
    "postcss-modules": "^1.4.1",
    "prettier": "^1.16.4",
    "prop-types": "^15.7.2",
    "react": "^16.8.6",
    "react-dom": "^16.8.6",
    "react-resize-detector": "^4.2.0",
    "sass": "^1.23.0-module.beta.1",
    "typescript": "^3.6.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js?(x),ts?(x)}": [
      "eslint --fix",
      "git add"
    ],
    "*.{?(s)css,htm?(l),json,md,y?(a)ml}": [
      "prettier --write",
      "git add"
    ]
  }
}
