Files
setup-kustomize/package.json
dependabot[bot] b662b7c069 ---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-21 10:40:04 +00:00

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.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^20.8.8",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^7.10.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"
}
}