azure-setup-helm/package.json
David Gamero 3894c84c36
Some checks failed
Run prettify / Prettier Check (push) Waiting to run
Run unit tests. / build (macos-latest) (push) Waiting to run
Run unit tests. / build (ubuntu-24.04-arm) (push) Waiting to run
Run unit tests. / build (ubuntu-latest) (push) Waiting to run
Run unit tests. / build (windows-11-arm) (push) Waiting to run
Run unit tests. / build (windows-latest) (push) Waiting to run
Release Project / release (push) Has been cancelled
chore(release): v5.0.0 (#265)
2026-03-24 09:35:40 +13:00

35 lines
905 B
JSON

{
"name": "setuphelm",
"version": "5.0.0",
"private": true,
"description": "Setup helm",
"author": "Anumita Shenoy",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.2",
"@actions/exec": "^2.0.0",
"@actions/io": "^2.0.0",
"@actions/tool-cache": "3.0.0",
"@octokit/action": "^8.0.4",
"semver": "^7.7.3"
},
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/index.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage",
"format": "prettier --write .",
"format-check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"@vercel/ncc": "^0.38.4",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.8.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}