35 lines
886 B
JSON
35 lines
886 B
JSON
{
|
|
"name": "setuphelm",
|
|
"version": "4.2.0",
|
|
"private": true,
|
|
"description": "Setup helm",
|
|
"author": "Anumita Shenoy",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.2",
|
|
"@actions/tool-cache": "2.0.1",
|
|
"@octokit/action": "^6.0.7",
|
|
"semver": "^7.5.4"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"prebuild": "npm i ncc",
|
|
"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",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.1.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|