{
  "name": "ctrl-scripts",
  "version": "0.1.0",
  "description": "Scripts for create-typescript-react-library",
  "main": "dist/index.js",
  "module": "dist/ctrl-scripts.esm.js",
  "umd": "dist/ctrl-scripts.umd.js",
  "typings": "dist/index.d.ts",
  "bin": {
    "ctrl": "dist/bin.js",
    "ctrl-scripts": "dist/bin.js"
  },
  "files": [
    "dist",
    "coverage"
  ],
  "author": {
    "name": "Tom Golden",
    "email": "github@tbjgolden.com",
    "url": "https://github.com/tbjgolden"
  },
  "homepage": "https://github.com/tbjgolden/ctrl-scripts",
  "repository": {
    "type": "git",
    "url": "https://github.com/tbjgolden/ctrl-scripts.git"
  },
  "scripts": {
    "build": "run-s clean compile bundle",
    "bundle": "rollup -c ./config/rollup.config.js",
    "check:format": "prettier --list-different \"**/*.{js,json,ts,tsx,md}\"",
    "check:types": "tsc -p tsconfig.build.json --noEmit",
    "clean": "run-p clean:*",
    "clean:compiled": "del compiled",
    "clean:coverage": "jest --config ./config/jest/config.src.ts",
    "clean:dist": "del dist",
    "compile": "tsc -p tsconfig.build.json",
    "coverage": "run-s test:src",
    "format": "prettier --write \"**/*.{js,json,ts,tsx,md}\"",
    "lint": "eslint . --ext .ts,.tsx",
    "postbundle": "del compiled",
    "start": "ts-node scripts/start.ts",
    "test": "run-s check:* lint build test:*",
    "test:cjs": "jest --config ./config/jest/config.cjs.ts",
    "test:es": "jest --config ./config/jest/config.es.ts",
    "test:src": "jest --config ./config/jest/config.src.ts",
    "test:umdprod": "jest --config ./config/jest/config.umd.ts",
    "typedoc": "typedoc --out docs/api --theme markdown --readme none --entryPoints \"src/index.ts*\"",
    "semantic-release": "semantic-release"
  },
  "release": {
    "branches": [
      "main"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "keywords": [
    "typescript"
  ],
  "license": "MIT",
  "bugs": {
    "url": "github:tbjgolden/ctrl-scripts/issues"
  },
  "peerDependencies": {},
  "dependencies": {
    "@babel/runtime": "^7.12.5",
    "app-root-path": "^3.0.0",
    "dedent": "^0.7.0",
    "del": "^6.0.0",
    "enquirer": "^2.3.6",
    "fast-glob": "^3.2.5",
    "line-column": "^1.0.2",
    "prettier": "^2.2.1"
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/plugin-proposal-class-properties": "7.12.1",
    "@babel/plugin-transform-runtime": "7.12.10",
    "@babel/preset-env": "7.12.11",
    "@commitlint/cli": "^11.0.0",
    "@commitlint/config-conventional": "^11.0.0",
    "@rollup/plugin-babel": "^5.2.2",
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^11.1.0",
    "@testing-library/jest-dom": "^5.11.9",
    "@types/app-root-path": "^1.2.4",
    "@types/dedent": "^0.7.0",
    "@types/jest": "26.0.20",
    "@types/line-column": "^1.0.0",
    "@types/mkdirp": "^1.0.1",
    "@typescript-eslint/eslint-plugin": "4.14.0",
    "@typescript-eslint/parser": "4.14.0",
    "babel-core": "6.26.3",
    "babel-loader": "^8.2.2",
    "classnames": "^2.2.6",
    "commitizen": "^4.2.3",
    "cp-cli": "2.0.0",
    "cross-env": "7.0.3",
    "del-cli": "3.0.1",
    "eslint": "7.18.0",
    "eslint-config-prettier": "7.2.0",
    "fork-ts-checker-webpack-plugin": "^6.1.0",
    "fs-extra": "^9.1.0",
    "husky": "^4.3.8",
    "jest": "26.6.3",
    "mkdirp": "^1.0.4",
    "npm-run-all": "4.1.5",
    "regenerator-runtime": "0.13.7",
    "rollup": "2.38.0",
    "rollup-plugin-filesize": "9.1.0",
    "rollup-plugin-terser": "7.0.2",
    "run-parallel": "^1.1.10",
    "semantic-release": "^17.3.7",
    "ts-jest": "26.4.4",
    "ts-loader": "^8.0.14",
    "ts-node": "^9.1.1",
    "typedoc": "^0.20.19",
    "typedoc-plugin-markdown": "^3.4.3",
    "typescript": "4.1.3"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "printWidth": 80,
    "tabWidth": 2,
    "useTabs": false,
    "quoteProps": "consistent",
    "trailingComma": "none",
    "bracketSpacing": true,
    "jsxBracketSameLine": false,
    "arrowParens": "always",
    "proseWrap": "always",
    "htmlWhitespaceSensitivity": "strict"
  },
  "eslintConfig": {
    "root": true,
    "extends": "./config/eslint.config.js"
  }
}
