2020-04-28 15:45:21 +02:00
|
|
|
{
|
|
|
|
"name": "download-artifact",
|
2024-01-10 16:59:40 +01:00
|
|
|
"version": "4.0.1",
|
2023-12-13 01:21:23 +01:00
|
|
|
"description": "Download an Actions Artifact from a workflow run",
|
2020-04-28 15:45:21 +02: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 20:53:33 +01:00
|
|
|
"dependencies": {
|
2024-01-10 17:00:45 +01:00
|
|
|
"@actions/artifact": "^2.0.1",
|
2023-08-24 17:57:52 +02:00
|
|
|
"@actions/core": "^1.10.0",
|
2023-12-15 23:18:41 +01:00
|
|
|
"@actions/github": "^5.1.1",
|
|
|
|
"minimatch": "^9.0.3"
|
2020-08-12 02:20:07 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-15 12:09:31 +02:00
|
|
|
"@types/node": "^12.12.6",
|
2023-12-15 23:46:13 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
2022-10-21 01:26:49 +02:00
|
|
|
"@vercel/ncc": "^0.33.4",
|
2020-04-30 22:50:01 +02:00
|
|
|
"concurrently": "^5.2.0",
|
2023-12-15 23:46:13 +01:00
|
|
|
"eslint": "^8.55.0",
|
|
|
|
"eslint-plugin-github": "^4.10.1",
|
|
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
|
|
"prettier": "^3.1.1",
|
2023-12-15 23:18:41 +01:00
|
|
|
"typescript": "^5.3.3"
|
2020-04-28 15:45:21 +02:00
|
|
|
}
|
2024-01-10 16:59:40 +01:00
|
|
|
}
|