{
    "name": "@owvy/aka",
    "version": "2.3.0",
    "description": "Aka is a friendly CLI to run sharable alias & bash commands.",
    "author": "Owvy Labs",
    "homepage": "https://github.com/owvy/aka",
    "license": "ISC",
    "repository": {
        "type": "git",
        "url": "git@github.com:owvy/aka.git"
    },
    "keywords": [
        "terminal",
        "sharable",
        "alias",
        "bash",
        "shortcut",
        "shell",
        "args",
        "command",
        "cli",
        "typescript"
    ],
    "engines": {
        "node": ">=8"
    },
    "preferGlobal": true,
    "files": [
        "dist"
    ],
    "bin": {
        "aka": "dist/index.js"
    },
    "scripts": {
        "build": "tsc",
        "dev": "tsc -w",
        "cmd": "node ./dist/index.js",
        "format": "prettier --write ./src",
        "lint": "eslint './src/*/**/*.{js,ts,tsx}' --fix",
        "release": "npm run build && npm publish --public=access && git push --follow-tags",
        "patch-release": "npm version patch && npm run release",
        "minor-release": "npm version minor && npm run release",
        "major-release": "npm version major && npm run release"
    },
    "devDependencies": {
        "@types/command-line-usage": "^5.0.1",
        "@types/lodash": "^4.14.162",
        "@types/shelljs": "^0.8.8",
        "@types/signale": "^1.4.1",
        "@typescript-eslint/eslint-plugin": "^4.5.0",
        "@typescript-eslint/parser": "^4.5.0",
        "eslint": "^7.12.0",
        "eslint-config-airbnb-base": "^14.2.0",
        "eslint-config-prettier": "^6.14.0",
        "eslint-plugin-import": "^2.22.1",
        "eslint-plugin-prettier": "^3.1.4",
        "husky": "^4.3.0",
        "lint-staged": "^10.4.2",
        "prettier": "^2.1.2",
        "typescript": "^4.0.3"
    },
    "dependencies": {
        "chalk": "^4.1.0",
        "command-line-usage": "^6.1.0",
        "commander": "^6.2.0",
        "configstore": "^5.0.1",
        "lodash": "^4.17.20",
        "shelljs": "^0.8.4",
        "signale": "^1.4.0",
        "yaml": "^1.10.0"
    },
    "lint-staged": {
        "./src/*/**/*.{js,ts,tsx}": [
            "eslint --fix",
            "prettier --write"
        ]
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    }
}
