2020-02-13 01:57:27 -05:00
|
|
|
{
|
|
|
|
|
"name": "retry",
|
|
|
|
|
"version": "0.0.0-managed-by-semantic-release",
|
|
|
|
|
"description": "Retries a GitHub Action step on failure or timeout.",
|
|
|
|
|
"scripts": {
|
2022-08-02 22:47:32 -04:00
|
|
|
"lint:base": "eslint --config ./.config/.eslintrc.js ",
|
|
|
|
|
"lint": "npm run lint:base -- .",
|
2020-11-14 11:45:32 -05:00
|
|
|
"local": "npm run prepare && node -r dotenv/config ./dist/index.js",
|
2022-08-02 22:47:32 -04:00
|
|
|
"prepare": "ncc build src/index.ts && husky install",
|
|
|
|
|
"style:base": "prettier --config ./.config/.prettierrc.yml --ignore-path ./.config/.prettierignore --write ",
|
2022-08-03 10:19:55 -04:00
|
|
|
"style": "npm run style:base -- .",
|
|
|
|
|
"test": "jest -c ./.config/jest.config.js"
|
2020-02-13 01:57:27 -05:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2025-02-25 17:24:55 +05:30
|
|
|
"url": "git+https://github.com/nick-fields/retry.git"
|
2020-02-13 01:57:27 -05:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2022-04-25 23:53:00 -04:00
|
|
|
"author": "Nick Fields",
|
2020-02-13 01:57:27 -05:00
|
|
|
"license": "ISC",
|
|
|
|
|
"bugs": {
|
2025-02-25 17:24:55 +05:30
|
|
|
"url": "https://github.com/nick-fields/retry/issues"
|
2020-02-13 01:57:27 -05:00
|
|
|
},
|
2025-02-25 17:24:55 +05:30
|
|
|
"homepage": "https://github.com/nick-fields/retry#readme",
|
2020-02-13 01:57:27 -05:00
|
|
|
"dependencies": {
|
2022-10-14 20:41:20 -04:00
|
|
|
"@actions/core": "^1.10.0",
|
2020-02-13 01:57:27 -05:00
|
|
|
"milliseconds": "^1.0.3",
|
|
|
|
|
"tree-kill": "^1.2.2"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-04-25 23:53:00 -04:00
|
|
|
"@commitlint/cli": "^16.2.3",
|
|
|
|
|
"@commitlint/config-conventional": "^16.2.1",
|
2025-02-25 08:17:18 -05:00
|
|
|
"@semantic-release/changelog": "^6.0.3",
|
2022-04-25 23:53:00 -04:00
|
|
|
"@semantic-release/git": "^10.0.1",
|
2022-08-03 10:19:55 -04:00
|
|
|
"@types/jest": "^28.1.6",
|
2020-11-14 11:45:32 -05:00
|
|
|
"@types/milliseconds": "0.0.30",
|
2022-08-02 21:55:30 -04:00
|
|
|
"@types/node": "^16.11.7",
|
2022-08-02 22:47:32 -04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.32.0",
|
|
|
|
|
"@typescript-eslint/parser": "^5.32.0",
|
2024-01-31 11:50:52 -05:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2020-09-29 11:05:03 -04:00
|
|
|
"dotenv": "8.2.0",
|
2022-08-02 22:47:32 -04:00
|
|
|
"eslint": "^8.21.0",
|
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
|
"husky": "^8.0.1",
|
2022-08-03 10:19:55 -04:00
|
|
|
"jest": "^28.1.3",
|
2022-08-02 22:47:32 -04:00
|
|
|
"lint-staged": "^13.0.3",
|
|
|
|
|
"prettier": "^2.7.1",
|
2025-02-25 08:17:18 -05:00
|
|
|
"semantic-release": "^24.2.3",
|
2022-08-03 10:19:55 -04:00
|
|
|
"ts-jest": "^28.0.7",
|
2020-11-14 11:45:32 -05:00
|
|
|
"ts-node": "9.0.0",
|
2022-08-03 10:19:55 -04:00
|
|
|
"typescript": "^4.7.4",
|
|
|
|
|
"yaml-lint": "^1.7.0"
|
2020-02-13 01:57:27 -05:00
|
|
|
},
|
2022-08-02 22:47:32 -04:00
|
|
|
"lint-staged": {
|
|
|
|
|
"**/*.ts": [
|
|
|
|
|
"npm run style:base --",
|
|
|
|
|
"npm run lint:base --"
|
|
|
|
|
],
|
|
|
|
|
"**/*.{md,yaml,yml}": [
|
|
|
|
|
"npm run style:base --"
|
2022-08-03 10:19:55 -04:00
|
|
|
],
|
|
|
|
|
"**/*.{yaml,yml}": [
|
|
|
|
|
"npx yamllint "
|
2022-08-02 22:47:32 -04:00
|
|
|
]
|
2020-02-13 01:57:27 -05:00
|
|
|
}
|
|
|
|
|
}
|