{
  "name": "code-theme-converter",
  "version": "1.2.1",
  "description": "Convert any vscode theme with ease!",
  "bin": {
    "code2subl": "bin/code2subl.js",
    "code2idea": "bin/code2idea.js"
  },
  "files": [
    "bin",
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "yarn build",
    "test": "jest",
    "lint": "eslint src/**/*.ts"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/tobiastimm/code-theme-converter.git"
  },
  "bugs": {
    "url": "https://github.com/tobiastimm/code-theme-converter/issues"
  },
  "keywords": [
    "vscode",
    "sublime",
    "idea",
    "theme",
    "convert"
  ],
  "author": "Tobias Timm <tbs.timm@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "@xstate/fsm": "^1.5.0",
    "chalk": "^2.4.2",
    "cmd-shim": "^2.0.2",
    "commander": "^5.0.0",
    "download-git-repo": "^1.1.0",
    "execa": "^1.0.0",
    "fs-extra": "^8.1.0",
    "js2xmlparser": "^4.0.1",
    "json5": "^2.1.0",
    "minimist": "^1.2.0",
    "plist": "^3.0.1",
    "ramda": "^0.27.0",
    "rimraf": "^2.6.3",
    "slash": "^2.0.0",
    "uuid": "^3.3.2"
  },
  "devDependencies": {
    "@types/fs-extra": "^8.1.0",
    "@types/jest": "^25.1.3",
    "@types/json5": "^0.0.30",
    "@types/mock-fs": "^4.10.0",
    "@types/node": "^13.11.1",
    "@types/plist": "^3.0.2",
    "@types/ramda": "^0.27.3",
    "@types/rimraf": "^2.0.3",
    "@types/uuid": "^7.0.0",
    "@typescript-eslint/eslint-plugin": "2",
    "@typescript-eslint/parser": "^2.21.0",
    "eslint": "^6.0.0",
    "eslint-config-prettier": "^6.10.0",
    "eslint-config-standard": "^14.1.0",
    "eslint-config-standard-with-typescript": "^14.0.0",
    "eslint-plugin-import": "2",
    "eslint-plugin-node": "11",
    "eslint-plugin-prettier": "^3.1.2",
    "eslint-plugin-promise": "4",
    "eslint-plugin-standard": "4",
    "husky": ">=4",
    "inquirer": "^6.2.2",
    "jest": "^25.1.0",
    "lint-staged": ">=10",
    "mock-fs": "^4.11.0",
    "mockdate": "^3.0.2",
    "prettier": "^1.19.1",
    "ts-jest": "^25.2.1",
    "typescript": "^3.8.2"
  },
  "engines": {
    "node": ">=8.9"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": "eslint --fix"
  }
}
