4
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2025-11-13 16:03:50 +00:00
setup-helm/package.json
Dmytro Bondar 80968fd4ae
Action update:
- Bump all dependencies
- Rewrite `getLatestHelmVersion()` function without graphql
2024-01-27 23:04:56 +01:00

32 lines
832 B
JSON

{
"name": "setuphelm",
"version": "0.0.0",
"private": true,
"description": "Setup helm",
"author": "Anumita Shenoy",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/http-client": "^2.2.0",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "2.0.1",
"semver": "^7.5.4"
},
"main": "lib/index.js",
"scripts": {
"build": "ncc build src/run.ts -o lib",
"test": "jest",
"test-coverage": "jest --coverage",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.8",
"@vercel/ncc": "^0.38.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}