mirror of
https://github.com/nick-fields/retry.git
synced 2025-12-28 18:58:52 +08:00
* fix: upgrade @actions/core from 1.5.0 to 1.8.2 Snyk has created this PR to upgrade @actions/core from 1.5.0 to 1.8.2. See this package in npm: https://www.npmjs.com/package/@actions/core See this project in Snyk: https://app.snyk.io/org/nick-invision/project/b960b937-66a3-4aae-9cb2-321f49c8750b?utm_source=github&utm_medium=referral&page=upgrade-pr * patch: regenerate action after bumping @actions/core Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: Nick Fields <46869826+nick-fields@users.noreply.github.com>
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
{
|
|
"name": "retry",
|
|
"version": "0.0.0-managed-by-semantic-release",
|
|
"description": "Retries a GitHub Action step on failure or timeout.",
|
|
"scripts": {
|
|
"local": "npm run prepare && node -r dotenv/config ./dist/index.js",
|
|
"prepare": "ncc build src/index.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nick-invision/retry.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Nick Fields",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/nick-invision/retry/issues"
|
|
},
|
|
"homepage": "https://github.com/nick-invision/retry#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.8.2",
|
|
"milliseconds": "^1.0.3",
|
|
"tree-kill": "^1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.2.3",
|
|
"@commitlint/config-conventional": "^16.2.1",
|
|
"@semantic-release/changelog": "^6.0.1",
|
|
"@semantic-release/git": "^10.0.1",
|
|
"@types/milliseconds": "0.0.30",
|
|
"@types/node": "14.14.7",
|
|
"@zeit/ncc": "^0.20.5",
|
|
"dotenv": "8.2.0",
|
|
"husky": "^4.3.8",
|
|
"semantic-release": "19.0.3",
|
|
"ts-node": "9.0.0",
|
|
"typescript": "4.0.5"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
|
|
"pre-commit": "npm run prepare && git add ."
|
|
}
|
|
}
|
|
}
|