mirror of
https://github.com/Azure/setup-kubectl
synced 2025-09-22 11:37:54 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Some checks failed
CodeQL Advanced / Analyze (javascript-typescript) (push) Failing after 2s
Integration test for setup-kubectl / Validate release and master branch (push) Failing after 1s
Run prettify / Prettier Check (push) Failing after 1s
Run unit tests. / build (push) Failing after 1s
36 lines
869 B
JSON
36 lines
869 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 .",
|
|
"prepare": "husky"
|
|
},
|
|
"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.3.0",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"husky": "^9.1.7",
|
|
"jest": "^30.0.5",
|
|
"prettier": "3.6.2",
|
|
"ts-jest": "^29.4.1",
|
|
"typescript": "5.9.2"
|
|
}
|
|
}
|