{
    "name": "fn-to-cli",
    "version": "2.0.3",
    "description": "Convert typescript functions to CLI executables.",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "bin": "./bin/bin.js",
    "scripts": {
        "check-updates": "ncu",
        "update": "npx ncu -u;npm install",
        "dead-files": "unimported",
        "spell-check": "cspell \"./**/*\"",
        "lint": "tsc --noEmit && eslint ./src/**/*.ts --max-warnings=0",
        "test-src": "npx jest --clearCache && npx jest ./src --silent --coverage",
        "test-example": "cd example;npm remove fn-to-cli;npm install ../;npm run build;npm run test;cd ../;",
        "build-ts": "rm -rf ./dist; npx ttsc -p ./tsconfig.build.json",
        "build-bin": "rm -rf ./bin/bin.js; node build-bin.js",
        "build-md": "node ./bin/bin.js -h > ./documentation.txt;npx md-in-place",
        "build": "npm run build-ts && npm run build-bin && npm run build-md",
        "pre-bump": "npm run dead-files && npm run spell-check && npm run lint && npm run test-src && npm run build && npm run test-example && git add --all && git commit",
        "release": "npm run pre-bump && npm publish --access public && npm run after-bump",
        "bump-patch": "npm run pre-bump && npm version patch && npm publish && npm run after-bump",
        "bump-minor": "npm run pre-bump && npm version minor && npm publish && npm run after-bump",
        "bump-major": "npm run pre-bump && npm version major && npm publish && npm run after-bump",
        "after-bump": "git push origin master; rm -rf ./dist ./bin"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/lillallol/fn-to-cli.git"
    },
    "files": [
        "dist"
    ],
    "keywords": [
        "fn",
        "function",
        "CLI",
        "cli",
        "command",
        "line",
        "interface",
        "convert",
        "typescript",
        "generator",
        "generation"
    ],
    "author": "lillallol",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/lillallol/fn-to-cli/issues"
    },
    "homepage": "https://github.com/lillallol/fn-to-cli#readme",
    "devDependencies": {
        "@types/jest": "^26.0.22",
        "@typescript-eslint/eslint-plugin": "^4.20.0",
        "@typescript-eslint/parser": "^4.20.0",
        "cspell": "^5.3.9",
        "eslint": "^7.23.0",
        "jest": "^26.6.3",
        "md-in-place": "^0.2.0",
        "npm-check-updates": "^11.3.0",
        "ts-jest": "^26.5.4",
        "ts-node": "^9.1.1",
        "ttypescript": "^1.5.12",
        "unimported": "^1.9.0"
    },
    "dependencies": {
        "json5": "^2.2.0",
        "typescript": "^4.2.4",
        "typescript-is": "^0.18.2"
    }
}
