Files
release-changelog-builder-a…/package.json
T
Mike PenzandGitHub 2acbc24ac4 ```
@types/node                       ^20.11.17  →  ^20.11.24
 @types/semver                        ^7.5.6  →     ^7.5.8
 @typescript-eslint/eslint-plugin    ^6.21.0  →     ^7.1.0
 @typescript-eslint/parser           ^6.21.0  →     ^7.1.0
 eslint                              ^8.56.0  →    ^8.57.0
 eslint-plugin-github                ^4.10.1  →    ^4.10.2
 eslint-plugin-jest                  ^27.6.3  →    ^27.9.0
 https-proxy-agent                    ^7.0.2  →     ^7.0.4
 ```
2024-03-02 09:51:13 +00:00

66 lines
1.9 KiB
JSON

{
"name": "release-changelog-builder-action",
"version": "v4.1.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 **/**/*.ts",
"format-check": "prettier --check **/*.ts",
"format-fix": "eslint --fix src/**/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"test-github": "jest __tests__/*.test.ts",
"test-gitea": "jest __tests__/gitea/*.test.ts",
"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.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.2",
"gitea-js": "^1.20.1",
"https-proxy-agent": "^7.0.4",
"moment": "^2.30.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}