k8s-set-context/package.json
dependabot[bot] 97a27df14f
Some checks failed
CodeQL Advanced / Analyze (javascript-typescript) (push) Failing after 0s
Run Integration Tests / kubeconfig-method-integration-test (push) Failing after 1s
Run Prettify / Prettier Check (push) Failing after 1s
Run Unit Tests / unit-test (push) Failing after 1s
Bump the actions group with 3 updates (#145)
2025-05-13 15:17:34 -04:00

42 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 ."
},
"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.2.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.17",
"@vercel/ncc": "^0.38.3",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
}
}