mirror of
https://github.com/Azure/k8s-set-context
synced 2025-09-23 12:08:06 +00:00
38 lines
941 B
JSON
38 lines
941 B
JSON
{
|
|
"name": "k8s-set-context-action",
|
|
"version": "4.0.0",
|
|
"private": true,
|
|
"main": "lib/index.js",
|
|
"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.10.0",
|
|
"@actions/exec": "^1.0.0",
|
|
"@actions/io": "^1.1.2",
|
|
"@kubernetes/client-node": "^0.16.0",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/js-yaml": "^4.0.4",
|
|
"@types/node": "^20.11.8",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|