{
  "name": "case-it",
  "version": "1.0.1",
  "description": "{camel,constant,dot,kebab,pascal,snake,space} case it.",
  "repository": "https://github.com/firede/case-it.git",
  "author": "Firede <firede@firede.us>",
  "license": "MIT",
  "main": "index.js",
  "types": "index.d.ts",
  "scripts": {
    "compile": "tsc",
    "flowgen": "node scripts/gen-flowtype.js",
    "build": "yarn compile && yarn flowgen",
    "watch": "tsc -w",
    "test": "jest",
    "clean": "rimraf dist *.js *.flow *.ts *.tgz",
    "prepare": "yarn clean && yarn build && cp dist/* ."
  },
  "files": [
    "*.js",
    "*.flow",
    "*.ts"
  ],
  "devDependencies": {
    "@types/jest": "^22.2.3",
    "flowgen": "^1.2.2",
    "husky": "^1.0.0-rc.6",
    "jest": "^22.4.3",
    "lint-staged": "^7.1.0",
    "prettier": "^1.12.1",
    "rimraf": "^2.6.2",
    "ts-jest": "^22.4.6",
    "tslint": "^5.10.0",
    "tslint-config-prettier": "^1.12.0",
    "typescript": "^2.8.3"
  },
  "keywords": [
    "case",
    "camel",
    "camelcase",
    "camel-case",
    "constant",
    "constantcase",
    "constant-case",
    "dot",
    "dotcase",
    "dot-case",
    "kebab",
    "kebabcase",
    "kebab-case",
    "pascal",
    "pascalcase",
    "pascal-case",
    "snake",
    "snakecase",
    "snake-case",
    "space",
    "spacecase",
    "space-case",
    "string",
    "convert"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "pre-push": "yarn test"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write",
      "git add"
    ]
  },
  "jest": {
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  }
}
