mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2026-02-11 08:49:21 +00:00
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"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": "^2.0.2",
|
|
"@actions/exec": "^2.0.0",
|
|
"commander": "^14.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.7",
|
|
"@typescript-eslint/parser": "^6.21.0",
|
|
"@vercel/ncc": "^0.38.4",
|
|
"eslint": "^8.57.1",
|
|
"eslint-plugin-github": "^4.10.2",
|
|
"eslint-plugin-jest": "^27.9.0",
|
|
"jest": "^30.2.0",
|
|
"js-yaml": "^4.1.1",
|
|
"prettier": "^3.8.0",
|
|
"ts-jest": "^29.4.6",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|