{
    "name": "create-hermione-app",
    "version": "2.0.0",
    "description": "A tool for fast and simple hermione configuration",
    "main": "build/index.js",
    "types": "build/index.d.ts",
    "files": [
        "build"
    ],
    "bin": {
        "create-hermione-app": "./build/bin/create-hermione-app.js"
    },
    "scripts": {
        "build": "tsc",
        "build-spec": "tsc --build tsconfig.spec.json",
        "clean": "rimraf build/ build-spec/ *.tsbuildinfo",
        "prepack": "npm run clean && npm run build",
        "test": "npm run lint && npm run unit",
        "lint": "npm run eslint && npm run style",
        "reformat": "eslint src --ext .ts --fix && prettier --write 'src/**/*.ts' '**/*.json'",
        "style": "prettier --check 'src/**/*.ts' '**/*.json'",
        "eslint": "eslint src --ext .ts",
        "unit": "jest",
        "dev": "ts-node --compilerOptions {\"noUnusedLocals\":false,\"noUnusedParameters\":false} src/bin/create-hermione-app.ts .",
        "commitmsg": "commitlint -e"
    },
    "repository": {
        "type": "git",
        "url": "git://github.com/gemini-testing/create-hermione-app.git"
    },
    "keywords": [
        "hermione",
        "build-tools"
    ],
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/gemini-testing/create-hermione-app/issues"
    },
    "homepage": "https://github.com/gemini-testing/create-hermione-app#readme",
    "devDependencies": {
        "@commitlint/cli": "^16.3.0",
        "@commitlint/config-conventional": "^16.2.4",
        "@tsconfig/recommended": "^1.0.1",
        "@types/inquirer": "^9.0.1",
        "@types/jest": "^29.5.11",
        "@types/jest-when": "^3.5.5",
        "@types/lodash": "^4.14.185",
        "@types/yargs": "^17.0.12",
        "@typescript-eslint/eslint-plugin": "^4.33.0",
        "@typescript-eslint/parser": "^4.33.0",
        "eslint": "^7.32.0",
        "eslint-config-gemini-testing": "^3.0.0",
        "eslint-plugin-import": "^2.26.0",
        "eslint-plugin-n": "^15.2.5",
        "eslint-plugin-promise": "^6.0.1",
        "hermione": "^7.4.1",
        "jest": "^29.7.0",
        "jest-extended": "^4.0.2",
        "jest-when": "^3.6.0",
        "prettier": "^2.7.1",
        "ts-jest": "^29.1.1",
        "typescript": "^4.4.4"
    },
    "dependencies": {
        "inquirer": "^8.2.4",
        "lodash": "^4.17.21",
        "ora": "^4.1.1",
        "yargs": "^17.5.1"
    },
    "engines": {
        "node": ">=12.0.0"
    }
}
