{ "name": "@semanticversion/cli", "version": "0.0.0", "description": "Automated semantic versioning based on git history - CLI tool and GitHub Action", "main": "lib/main.js", "bin": { "git-sv": "lib/cli.js", "git-semantic-version": "lib/cli.js" }, "files": [ "lib/**/*.js", "lib/**/*.d.ts" ], "engines": { "node": ">=18" }, "scripts": { "prepublishOnly": "npm run build", "build": "tsc", "format": "prettier --write **/**.ts", "format-check": "prettier --check **/**.ts", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map --license licenses.txt", "test": "jest --runInBand --config ./jest.config.js", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/paulhatch/semantic-version.git" }, "keywords": [ "semantic-version", "semver", "git", "versioning", "cli", "github-actions" ], "author": "Paul Hatcherian", "license": "MIT", "bugs": { "url": "https://github.com/paulhatch/semantic-version/issues" }, "homepage": "https://github.com/paulhatch/semantic-version#readme", "dependencies": { "@actions/core": "^1.10.1", "@actions/exec": "^1.1.1", "commander": "^14.0.0" }, "devDependencies": { "@types/node": "^20.11.13", "@typescript-eslint/parser": "^6.20.0", "@vercel/ncc": "^0.38.1", "eslint": "^8.56.0", "eslint-plugin-github": "^4.10.1", "eslint-plugin-jest": "^27.6.3", "jest": "^29.7.0", "js-yaml": "^4.1.0", "prettier": "^3.2.4", "ts-jest": "^29.1.2", "typescript": "^5.3.3" } }