download-artifact/package.json
Matthieu MOREL 094ac703df chore(ci): update dependencies
Signed-off-by: Matthieu MOREL <mmorel-35@users.noreply.github.com>
Co-Authored-By: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-Authored-By: Matthieu MOREL <mmorel-35@users.noreply.github.com>
Co-Authored-By: MOREL Matthieu <matthieu.morel@cnp.fr>
2021-08-23 13:25:55 +02:00

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.5.0"
},
"devDependencies": {
"@types/node": "^16.7.1",
"@typescript-eslint/parser": "^4.29.2",
"@vercel/ncc": "^0.29.2",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.2.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}