{
  "author": {
    "name": "Christopher Froehlich",
    "url": "https://github.com/crfroehlich"
  },
  "dependencies": {
    "chalk": "^4.1.0",
    "lodash": "^4.17.20",
    "semver-compare": "^1.0.0",
    "yeoman-generator": "^4.12.0",
    "yosay": "^2.0.2"
  },
  "description": "Project generator",
  "devDependencies": {
    "@luddites-me/ts-tools": "1.1.0",
    "eslint": "^7.9.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-config-xo": "^0.32.1",
    "eslint-plugin-prettier": "^3.1.4",
    "github-release-notes": "^0.17.3",
    "husky": "^4.3.0",
    "jest": "^26.4.2",
    "lint-staged": "^10.4.0",
    "prettier": "^2.1.2",
    "yeoman-assert": "^3.1.1",
    "yeoman-test": "^3.0.0"
  },
  "engines": {
    "node": ">= 8.2.1",
    "npm": ">= 5.3.0"
  },
  "eslintConfig": {
    "env": {
      "jest": true,
      "node": true
    },
    "extends": [
      "xo",
      "prettier"
    ],
    "plugins": [
      "prettier"
    ],
    "rules": {
      "prettier/prettier": "error"
    }
  },
  "files": [
    "generators"
  ],
  "homepage": "https://github.com/luddites-me/generator",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "jest": {
    "testEnvironment": "node",
    "testRegex": "/__tests__/.*"
  },
  "keywords": [
    "luddites",
    "scaffolding",
    "yeoman-generator"
  ],
  "lint-staged": {
    "*.js": [
      "eslint -c package.json --no-eslintrc --fix",
      "git add"
    ],
    "*.json": [
      "prettier --write",
      "git add"
    ]
  },
  "license": "The Unlicense",
  "main": "generators/index.js",
  "name": "@luddites-me/generator",
  "repository": "https://github.com/luddites-me/generator",
  "scripts": {
    "build": "yarn sortJson && yarn docs:standardize",
    "docs:standardize": "npx ./node_modules/@luddites-me/ts-tools/dist/readme/standardizeReadme.js",
    "pretest": "eslint .",
    "sortJson": "npx ./node_modules/@luddites-me/ts-tools/dist/lint/sortJson.js",
    "test": "jest"
  },
  "scriptsDocumentation": {
    "build": {
      "description": "Sorts JSON and runs documentation",
      "dev": false
    },
    "docs:standardize": {
      "description": "Runs the documentation tools",
      "dev": true
    },
    "pretest": {
      "description": "Runs ESLint",
      "dev": true
    },
    "sortJson": {
      "description": "Alpha-sorts all JSON files",
      "dev": true
    },
    "test": {
      "description": "Runs the Jest tests",
      "dev": true
    }
  },
  "version": "1.0.3"
}
