mirror of
https://github.com/Azure/setup-kubectl
synced 2025-09-24 04:28:20 +00:00
34 lines
818 B
JSON
34 lines
818 B
JSON
{
|
|
"name": "setup-kubectl-action",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "npm i ncc && npx ncc build src/index.ts -o lib",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check ."
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.0.0",
|
|
"@actions/tool-cache": "^2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.0.2",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^30.0.0",
|
|
"prettier": "3.5.3",
|
|
"ts-jest": "^29.4.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|