mirror of
https://github.com/actions/download-artifact.git
synced 2025-07-27 00:48:28 +02:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [prettier](https://github.com/prettier/prettier) from 2.0.5 to 2.3.2. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.0.5...2.3.2) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "download-artifact",
|
|
"version": "2.0.0",
|
|
"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",
|
|
"dependencies": {
|
|
"@actions/artifact": "^0.5.2",
|
|
"@actions/core": "^1.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.4.1",
|
|
"@typescript-eslint/parser": "^4.28.4",
|
|
"@zeit/ncc": "^0.22.1",
|
|
"concurrently": "^5.2.0",
|
|
"eslint": "^7.4.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"prettier": "^2.3.2",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|