mirror of
https://gitea.com/actions/upload-artifact.git
synced 2025-04-24 01:26:45 +08:00

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>
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "upload-artifact",
|
|
"version": "2.0.1",
|
|
"description": "Upload a build artifact that can be used by subsequent workflow steps",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"release": "ncc build src/upload-artifact.ts && git add -f dist/",
|
|
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:test\" \"npm:build\"",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint **/*.ts",
|
|
"test": "jest --testTimeout 10000"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/upload-artifact.git"
|
|
},
|
|
"keywords": [
|
|
"Actions",
|
|
"GitHub",
|
|
"Artifacts",
|
|
"Upload"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/actions/upload-artifact/issues"
|
|
},
|
|
"homepage": "https://github.com/actions/upload-artifact#readme",
|
|
"dependencies": {
|
|
"@actions/artifact": "^0.5.2",
|
|
"@actions/core": "^1.5.0",
|
|
"@actions/glob": "^0.2.0",
|
|
"@actions/io": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.0.1",
|
|
"@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",
|
|
"eslint-plugin-jest": "^24.4.0",
|
|
"glob": "^7.1.7",
|
|
"jest": "^27.0.6",
|
|
"jest-circus": "^27.0.6",
|
|
"prettier": "^2.3.2",
|
|
"ts-jest": "^27.0.5",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|