{
    "name": "st-create",
    "version": "3.0.4",
    "publishConfig": {
        "access": "public"
    },
    "keywords": [
        "springtype",
        "scaffold",
        "generator",
        "code generator",
        "create"
    ],
    "description": "A versatile, template based code generator. Generates SpringType project boilerplates.",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/springtype-org/st-create.git"
    },
    "scripts": {
        "prebuild": "npx st-rm-rf dist",
        "build": "tsc",
        "postbuild": "npx st-cp package.json node_modules README.md dist",
        "start": "node ./dist/cli.js",
        "format:fix": "pretty-quick --verbose --pattern 'src/**/*.ts{,x}'",
        "format:fix:staged": "yarn format:fix --staged",
        "format:check": "pretty-quick --check --verbose --pattern 'src/**/*.ts{,x}'",
        "lint:fix": "eslint --ext ts 'src/**/*.ts{,x}' --fix",
        "lint:check": "eslint --ext ts 'src/**/*.ts{,x}'"
    },
    "engines": {
        "node": ">=10"
    },
    "bundledDependencies": [
        "envinfo",
        "chalk",
        "st-rm-rf",
        "inquirer",
        "commander",
        "cross-spawn",
        "validate-npm-package-name"
    ],
    "bin": {
        "st-create": "./cli.js"
    },
    "main": "cli.js",
    "author": "Aron Homberg <info@aron-homberg.de>, Michael Mannseicher <m.mansi1@gmx.net>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/springtype-org/st-create/issues"
    },
    "homepage": "https://www.springtype.org",
    "husky": {
        "hooks": {
            "pre-commit": "yarn format:fix:staged && yarn lint:check",
            "pre-push": "yarn audit --level MODERATE",
            "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
        }
    },
    "dependencies": {
        "chalk": "^4.1.0",
        "commander": "^7.1.0",
        "cross-spawn": "^7.0.3",
        "envinfo": "^7.7.4",
        "inquirer": "^7.3.3",
        "st-rm-rf": "^2.0.0-beta.1",
        "validate-npm-package-name": "^3.0.0"
    },
    "devDependencies": {
        "@types/node": "^14.14.31",
        "st-run": "^2.0.0-beta.4",
        "@commitlint/cli": "^11.0.0",
        "husky": "^4.3.8",
        "prettier": "^2.2.1",
        "pretty-quick": "^3.1.0",
        "ts-node": "^9.1.1",
        "typescript": "^4.1.5",
        "conventional-changelog-conventionalcommits": "^4.5.0",
        "eslint": "^7.19.0",
        "@typescript-eslint/eslint-plugin": "^4.14.2",
        "@typescript-eslint/parser": "^4.14.2",
        "eslint-config-airbnb": "18.2.1",
        "eslint-config-airbnb-typescript": "^12.0.0",
        "eslint-config-prettier": "^7.2.0",
        "eslint-plugin-import": "^2.22.1",
        "eslint-plugin-jest": "^24.1.3",
        "eslint-plugin-jsx-a11y": "^6.4.1",
        "eslint-plugin-prettier": "^3.3.1",
        "eslint-plugin-react": "^7.22.0",
        "eslint-plugin-react-hooks": "^4.2.0"
    }
}