2020-04-28 13:45:21 +00:00
|
|
|
{
|
|
|
|
"name": "download-artifact",
|
2022-03-01 21:18:36 +00:00
|
|
|
"version": "3.0.0",
|
2020-04-28 13:45:21 +00:00
|
|
|
"description": "Download a build artifact that was previously uploaded in the workflow by the upload-artifact action",
|
|
|
|
"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": {
|
2023-01-04 22:30:33 +00:00
|
|
|
"@actions/artifact": "^1.1.1",
|
2022-10-20 23:26:49 +00:00
|
|
|
"@actions/core": "^1.10.0"
|
2020-08-12 00:20:07 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-07-15 10:09:31 +00:00
|
|
|
"@types/node": "^12.12.6",
|
2022-10-20 23:26:49 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
|
|
"@vercel/ncc": "^0.33.4",
|
2020-04-30 20:50:01 +00:00
|
|
|
"concurrently": "^5.2.0",
|
2020-07-15 10:09:31 +00:00
|
|
|
"eslint": "^7.4.0",
|
2021-01-04 14:47:26 +00:00
|
|
|
"eslint-plugin-github": "^4.1.1",
|
2020-04-30 20:50:01 +00:00
|
|
|
"prettier": "^2.0.5",
|
2020-04-28 13:45:21 +00:00
|
|
|
"typescript": "^3.8.3"
|
|
|
|
}
|
|
|
|
}
|