Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 26.5.3 to 26.5.4. - [Release notes](https://github.com/kulshekhar/ts-jest/releases) - [Changelog](https://github.com/kulshekhar/ts-jest/blob/master/CHANGELOG.md) - [Commits](https://github.com/kulshekhar/ts-jest/compare/v26.5.3...v26.5.4) Signed-off-by: dependabot[bot] <support@github.com>
59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"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.2.6",
|
|
"@actions/exec": "^1.0.4",
|
|
"@actions/github": "^4.0.0",
|
|
"@octokit/rest": "^18.3.5",
|
|
"@types/semver": "^7.3.4",
|
|
"moment": "^2.29.1",
|
|
"semver": "^7.3.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.19",
|
|
"@types/node": "^14.14.35",
|
|
"@typescript-eslint/parser": "^4.18.0",
|
|
"@vercel/ncc": "^0.27.0",
|
|
"eslint": "^7.22.0",
|
|
"eslint-plugin-github": "^4.1.2",
|
|
"eslint-plugin-jest": "^24.3.2",
|
|
"jest": "^26.6.3",
|
|
"jest-circus": "^26.6.3",
|
|
"js-yaml": "^4.0.0",
|
|
"prettier": "2.2.1",
|
|
"ts-jest": "^26.5.4",
|
|
"typescript": "^4.2.3"
|
|
}
|
|
}
|