setup-kubectl/package.json
dependabot[bot] cdf8c1d057
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
Bump @types/node from 24.2.1 to 24.3.0 in the actions group (#188)
2025-08-20 02:29:22 +12:00

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"
}
}