mirror of
https://github.com/Azure/k8s-set-context
synced 2025-09-22 11:37:53 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the actions group with 2 updates in the / directory: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) and [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node). Updates `@babel/preset-env` from 7.28.0 to 7.28.3 - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.28.3/packages/babel-preset-env) Updates `@types/node` from 24.1.0 to 24.3.0 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-version: 7.28.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: actions - dependency-name: "@types/node" dependency-version: 24.3.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "k8s-set-context-action",
|
|
"version": "4.0.0",
|
|
"private": true,
|
|
"main": "lib/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"prebuild": "npm i @vercel/ncc",
|
|
"build": "ncc build src/run.ts -o lib",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check .",
|
|
"prepare": "husky"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@kubernetes/client-node": "^1.3.0",
|
|
"husky": "^9.1.7",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.28.3",
|
|
"@babel/preset-typescript": "^7.27.1",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^24.3.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"babel-jest": "^30.0.5",
|
|
"jest": "^30.0.5",
|
|
"prettier": "^3.6.2",
|
|
"ts-jest": "^29.4.1",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|