{
  "name": "kataclism",
  "version": "1.3.1",
  "description": "Bootstrapper for code kata in JavaScript",
  "keywords": [
    "code kata",
    "kata",
    "javascript kata",
    "typescript kata"
  ],
  "homepage": "https://github.com/glippi/kataclism#readme",
  "bugs": {
    "url": "https://github.com/glippi/kataclism/issues"
  },
  "license": "MIT",
  "author": "Gabriele Lippi",
  "main": "dist/index.js",
  "bin": {
    "kataclism": "dist/index.js"
  },
  "files": [
    "/dist",
    "templates/**/*"
  ],
  "scripts": {
    "prettier": "npx prettier --write --list-different --parser typescript \"src/**/*.ts\"",
    "test:once": "jest",
    "test:watch": "jest --watchAll",
    "test:integration": "jest --findRelatedTests test/integration.test.ts test/katas.test.ts",
    "build": "tsc",
    "postbuild": "jest test/distFiles.test.ts",
    "build:clean": "rm -rf dist/",
    "build:publish": "npm run build:clean && npm run build && npm publish"
  },
  "jest": {
    "roots": [
      "src/",
      "test"
    ],
    "testMatch": [
      "/__tests__/.*\\.(ts|tsx|js)",
      "**/?(*.)(spec|test).ts?(x)"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testPathIgnorePatterns": [
      "/node_modules",
      "/templates",
      "/bowling-kata"
    ]
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "prettier-eslint --write",
      "eslint --fix",
      "git add"
    ]
  },
  "dependencies": {
    "cac": "^6.4.2",
    "chalk": "^2.4.2",
    "inquirer": "^8.2.2",
    "shelljs": "^0.8.3"
  },
  "devDependencies": {
    "@types/inquirer": "^0.0.43",
    "@types/jest": "^27.4.1",
    "@types/node": "^11.9.4",
    "@types/shelljs": "^0.8.3",
    "@typescript-eslint/eslint-plugin": "^5.16.0",
    "@typescript-eslint/parser": "^5.16.0",
    "eslint": "^8.12.0",
    "eslint-config-prettier": "^4.1.0",
    "jest": "^27.5.1",
    "lint-staged": "^12.3.7",
    "prettier": "^1.16.4",
    "prettier-eslint-cli": "^4.2.1",
    "ts-jest": "^27.1.4",
    "ts-node": "^10.7.0",
    "typescript": "^3.3.3"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/glippi/kataclism.git"
  }
}
