{ "name": "release-changelog-builder-action", "version": "v5.2.0", "private": true, "description": "A GitHub action that builds your release notes / changelog fast, easy and exactly the way you want.", "main": "lib/main.js", "type": "module", "scripts": { "build": "tsc", "format": "prettier --write src/**.ts", "format-check": "prettier --check src/**.ts", "format-fix": "eslint --fix src/**.ts", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map --license licenses.txt", "test": "NODE_OPTIONS=--experimental-vm-modules jest --reporters=default --reporters=jest-junit", "test-main": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/main.test.ts --reporters=default --reporters=jest-junit", "test-github": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/*.test.ts __tests__/offline/*.test.ts --reporters=default --reporters=jest-junit", "test-gitea": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/gitea/*.test.ts --reporters=default --reporters=jest-junit", "test-demo": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/demo/*.test.ts --reporters=default --reporters=jest-junit", "test-offline": "NODE_OPTIONS=--experimental-vm-modules jest __tests__/offline/*.test.ts --reporters=default --reporters=jest-junit", "all": "npm run build && npm run format && npm run lint && npm run package && npm run test-github" }, "repository": { "type": "git", "url": "git+https://github.com/mikepenz/release-changelog-builder.git" }, "keywords": [ "actions", "changelog", "release-notes", "release", "notes", "change", "release-automation", "pull-requests", "issues", "labels" ], "author": "Mike Penz", "license": "Apache 2.0", "dependencies": { "@actions/core": "^1.11.1", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.1", "@octokit/rest": "^22.0.0", "gitea-js": "^1.23.0", "globals": "^16.3.0", "https-proxy-agent": "^7.0.6", "moment": "^2.30.1", "semver": "^7.7.2" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.31.0", "@types/jest": "^30.0.0", "@types/node": "^24.0.13", "@types/semver": "^7.7.0", "@typescript-eslint/eslint-plugin": "^8.36.0", "@typescript-eslint/parser": "^8.36.0", "@vercel/ncc": "^0.38.3", "eslint": "^9.31.0", "eslint-import-resolver-typescript": "^4.4.4", "eslint-plugin-github": "^6.0.0", "eslint-plugin-import": "^2.32.0", "eslint-plugin-jest": "^29.0.1", "eslint-plugin-prettier": "^5.5.1", "jest": "^30.0.4", "jest-junit": "^16.0.0", "jest-circus": "^30.0.4", "js-yaml": "^4.1.0", "prettier": "3.6.2", "ts-jest": "^29.4.0", "typescript": "^5.8.3" }, "overrides": { "glob": "11.0.1" } }