{ "name": "release-changelog-builder-action", "version": "v1.0.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", "scripts": { "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", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" }, "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.5.0", "@actions/exec": "^1.1.0", "@actions/github": "^5.0.0", "@octokit/rest": "^18.10.0", "@types/semver": "^7.3.8", "moment": "^2.29.1", "semver": "^7.3.5", "webpack": "^5.52.0" }, "devDependencies": { "@types/jest": "^27.0.1", "@types/node": "^16.9.0", "@typescript-eslint/parser": "^4.31.0", "@vercel/ncc": "^0.30.0", "eslint": "^7.32.0", "eslint-plugin-github": "^4.2.0", "eslint-plugin-jest": "^24.4.0", "jest": "^27.1.1", "jest-circus": "^27.0.6", "js-yaml": "^4.1.0", "prettier": "2.4.0", "ts-jest": "^27.0.5", "typescript": "^4.4.2" } }