upload-artifact/package.json
dependabot[bot] 622d3b015b
Bump @actions/glob from 0.1.0 to 0.2.0 (#3)
* Bump @actions/glob from 0.1.0 to 0.2.0

Bumps [@actions/glob](https://github.com/actions/toolkit/tree/HEAD/packages/glob) from 0.1.0 to 0.2.0.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/glob/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/glob)

---
updated-dependencies:
- dependency-name: "@actions/glob"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump @actions/glob from 0.1.0 to 0.2.0

Bumps [@actions/glob](https://github.com/actions/toolkit/tree/HEAD/packages/glob) from 0.1.0 to 0.2.0.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/glob/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/glob)

---
updated-dependencies:
- dependency-name: "@actions/glob"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* update license and index.js

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: MOREL Matthieu <matthieu.morel@cnp.fr>
2021-07-24 09:19:19 +02:00

53 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.1",
"@typescript-eslint/parser": "^4.28.4",
"@zeit/ncc": "^0.22.1",
"concurrently": "^6.2.0",
"eslint": "^7.31.0",
"eslint-plugin-github": "^4.1.5",
"eslint-plugin-jest": "^24.4.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"jest-circus": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}