2020-04-28 13:45:21 +00:00
|
|
|
{
|
|
|
|
"name": "download-artifact",
|
2024-01-10 15:59:40 +00:00
|
|
|
"version": "4.0.1",
|
2023-12-13 00:21:23 +00:00
|
|
|
"description": "Download an Actions Artifact from a workflow run",
|
2020-04-28 13:45:21 +00:00
|
|
|
"main": "dist/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"release": "ncc build src/download-artifact.ts && git add -f dist/",
|
|
|
|
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:build\"",
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint **/*.ts"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/actions/download-artifact.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"Actions",
|
|
|
|
"GitHub",
|
|
|
|
"Artifacts",
|
|
|
|
"Download"
|
|
|
|
],
|
|
|
|
"author": "GitHub",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/actions/download-artifact/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/actions/download-artifact#readme",
|
2020-11-13 19:53:33 +00:00
|
|
|
"dependencies": {
|
2024-02-05 17:25:55 +00:00
|
|
|
"@actions/artifact": "^2.1.1",
|
2023-08-24 15:57:52 +00:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-12-15 22:18:41 +00:00
|
|
|
"@actions/github": "^5.1.1",
|
|
|
|
"minimatch": "^9.0.3"
|
2020-08-12 00:20:07 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-15 10:09:31 +00:00
|
|
|
"@types/node": "^12.12.6",
|
2023-12-15 22:46:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
2022-10-20 23:26:49 +00:00
|
|
|
"@vercel/ncc": "^0.33.4",
|
2020-04-30 20:50:01 +00:00
|
|
|
"concurrently": "^5.2.0",
|
2023-12-15 22:46:13 +00:00
|
|
|
"eslint": "^8.55.0",
|
|
|
|
"eslint-plugin-github": "^4.10.1",
|
|
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
|
|
"prettier": "^3.1.1",
|
2023-12-15 22:18:41 +00:00
|
|
|
"typescript": "^5.3.3"
|
2020-04-28 13:45:21 +00:00
|
|
|
}
|
2024-01-10 15:59:40 +00:00
|
|
|
}
|