mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-05-17 18:25:27 +00:00
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "setup-kustomize",
|
|
"version": "2.1.0",
|
|
"private": true,
|
|
"description": "Github action to setup-kustomize",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"package": "ncc build --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/typescript-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"setup"
|
|
],
|
|
"author": "Imran Ismail",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^6.0.0",
|
|
"@actions/io": "^1.1.1",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@octokit/plugin-throttling": "^8.0.1",
|
|
"semver": "^7.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.6",
|
|
"@types/node": "^20.8.8",
|
|
"@types/semver": "^7.3.9",
|
|
"@typescript-eslint/parser": "^6.9.0",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.52.0",
|
|
"eslint-plugin-github": "^4.10.1",
|
|
"eslint-plugin-jest": "^27.4.3",
|
|
"jest": "^29.7.0",
|
|
"jest-circus": "^29.7.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^3.0.3",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|