Bumps [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) and [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest). These dependencies needed to be updated together. Updates `jest` from 29.5.0 to 29.6.4 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v29.6.4/packages/jest) Updates `@types/jest` from 29.5.2 to 29.5.4 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) --- updated-dependencies: - dependency-name: jest dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: "@types/jest" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
71 lines
1.6 KiB
JSON
71 lines
1.6 KiB
JSON
{
|
|
"name": "release-action",
|
|
"version": "1.1.0",
|
|
"private": true,
|
|
"description": "An action which manages a github release",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf lib/*",
|
|
"coverage": "jest --coverage",
|
|
"debug": "yarn clean && yarn install && yarn build && yarn package",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"release": "yarn clean && yarn install --production && yarn build && yarn package",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ncipollo/release-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"jest": {
|
|
"clearMocks": true,
|
|
"collectCoverage": true,
|
|
"coveragePathIgnorePatterns": [
|
|
"src/Globber.ts",
|
|
"src/Releases.ts"
|
|
],
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 95,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"ts"
|
|
],
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/*.test.ts"
|
|
],
|
|
"testRunner": "jest-circus/runner",
|
|
"transform": {
|
|
"^.+\\.ts$": "ts-jest"
|
|
},
|
|
"verbose": true
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^5.1.1",
|
|
"glob": "^10.3.4",
|
|
"untildify": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.4",
|
|
"@types/node": "^20.6.0",
|
|
"jest": "^29.6.4",
|
|
"jest-circus": "^29.6.4",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|