mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-05-17 18:25:27 +00:00
Bumps [semver](https://github.com/npm/node-semver) and [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver). These dependencies needed to be updated together. Updates `semver` from 7.5.4 to 7.6.0 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.5.4...v7.6.0) Updates `@types/semver` from 7.5.4 to 7.5.8 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver) --- updated-dependencies: - dependency-name: semver dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: "@types/semver" 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>
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "setup-kustomize",
|
|
"version": "2.1.0",
|
|
"private": true,
|
|
"description": "Github action to setup-kustomize",
|
|
"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/actions/typescript-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "Imran Ismail",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/io": "^1.1.1",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@octokit/plugin-throttling": "^8.0.1",
|
|
"semver": "^7.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.6",
|
|
"@types/node": "^20.8.8",
|
|
"@types/semver": "^7.5.8",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.52.0",
|
|
"eslint-plugin-github": "^4.10.1",
|
|
"eslint-plugin-jest": "^27.4.3",
|
|
"jest": "^29.7.0",
|
|
"jest-circus": "^29.7.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|