mirror of
https://github.com/actions/stale.git
synced 2025-12-10 03:57:04 +00:00
* build(deps-dev): bump @types/node from 20.10.3 to 24.2.0 Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.10.3 to 24.2.0. - [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-version: 24.2.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * doc update and check failure fix * changelog update * doc update * doc update * change log update * updated doc --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
72 lines
2.3 KiB
JSON
72 lines
2.3 KiB
JSON
{
|
|
"name": "stale-action",
|
|
"version": "10.0.0",
|
|
"private": true,
|
|
"description": "Marks old issues and PRs as stale",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc --project tsconfig.app.json && ncc build",
|
|
"format": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --write \"**/*.{ts,yml,yaml}\"",
|
|
"format-check": "prettier --no-error-on-unmatched-pattern --config ./.prettierrc.js --check \"**/*.{ts,yml,yaml}\"",
|
|
"lint": "eslint --config ./.eslintrc.js \"**/*.ts\"",
|
|
"lint:fix": "eslint --config ./.eslintrc.js \"**/*.ts\" --fix",
|
|
"lint:all": "npm run format-check && npm run lint",
|
|
"lint:all:fix": "npm run format && npm run lint:fix",
|
|
"test": "jest --config ./jest.config.js",
|
|
"test:only-errors": "jest --reporters jest-silent-reporter --silent",
|
|
"test:watch": "jest --watch --notify --expand",
|
|
"all": "npm run format && npm run lint && npm run build && npm test",
|
|
"all:ci": "npm run format && npm run lint && npm run build && npm run test:only-errors",
|
|
"prerelease": "npm run build",
|
|
"release": "standard-version",
|
|
"release:dry-run": "standard-version --dry-run"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/stale.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"stale"
|
|
],
|
|
"engines": {
|
|
"node": "24",
|
|
"npm": ">=7.0.0"
|
|
},
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/cache": "^4.0.3",
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/github": "^5.1.1",
|
|
"@octokit/core": "^4.2.0",
|
|
"@octokit/plugin-retry": "^4.1.1",
|
|
"lodash.deburr": "^4.1.0",
|
|
"semver": "^7.5.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/lodash.deburr": "^4.1.6",
|
|
"@types/node": "^24.3.1",
|
|
"@types/semver": "^7.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.2.1",
|
|
"@typescript-eslint/parser": "^6.2.1",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"ansi-styles": "5.2.0",
|
|
"eslint": "^8.46.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"jest": "^29.6.2",
|
|
"jest-circus": "^29.5.0",
|
|
"jest-silent-reporter": "^0.5.0",
|
|
"js-yaml": "^4.1.0",
|
|
"prettier": "^2.8.7",
|
|
"standard-version": "^9.3.1",
|
|
"terminal-link": "^2.1.1",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|