mirror of
https://github.com/actions/upload-artifact.git
synced 2025-04-21 18:51:20 +00:00
* Chore/dependencies (#21) * Update dependabot.yml * Update check-dist.yml * Update .github/workflows/test.yml * Update test.yml * Update .github/workflows/check-dist.yml * Update .github/workflows/test.yml * Update .github/workflows/test.yml * Update .github/workflows/test.yml * Update .github/workflows/test.yml * Update .github/workflows/test.yml * Update licensed.yml * Update licensed.yml * Update .licensed.yml * Update .licensed.yml * Bump @types/node from 16.4.3 to 16.4.10 (#24) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.4.3 to 16.4.10. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump eslint from 7.31.0 to 7.32.0 (#22) Bumps [eslint](https://github.com/eslint/eslint) from 7.31.0 to 7.32.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.31.0...v7.32.0) --- updated-dependencies: - dependency-name: eslint 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> * Bump @typescript-eslint/parser from 4.28.4 to 4.29.0 (#23) Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.28.4 to 4.29.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.29.0/packages/parser) --- updated-dependencies: - dependency-name: "@typescript-eslint/parser" 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> * Delete .licenses/npm directory * Auto-update license files Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: licensed-ci <licensed-ci@users.noreply.github.com>
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.4.0",
|
|
"@actions/glob": "^0.2.0",
|
|
"@actions/io": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.24",
|
|
"@types/node": "^16.4.10",
|
|
"@typescript-eslint/parser": "^4.29.0",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"concurrently": "^6.2.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-plugin-github": "^4.1.5",
|
|
"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.4",
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|