mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-15 10:10:42 +00:00
35 lines
888 B
JSON
35 lines
888 B
JSON
{
|
|
"name": "setuphelm",
|
|
"version": "4.2.0",
|
|
"private": true,
|
|
"description": "Setup helm",
|
|
"author": "Anumita Shenoy",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "2.0.2",
|
|
"@octokit/action": "^7.0.0",
|
|
"semver": "^7.7.1"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"prebuild": "npm i ncc",
|
|
"build": "ncc build src/index.ts -o lib",
|
|
"test": "jest",
|
|
"test-coverage": "jest --coverage",
|
|
"format": "prettier --write .",
|
|
"format-check": "prettier --check ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^22.13.1",
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.5.0",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|