mirror of
https://github.com/actions/stale.git
synced 2025-12-10 03:57:04 +00:00
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 2.28.0 to 3.7.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/v3.7.0/packages/parser) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "stale-action",
|
|
"version": "2.0.0",
|
|
"private": true,
|
|
"description": "Marks old issues and PRs as stale",
|
|
"main": "lib/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"lint": "eslint src/**/*.ts",
|
|
"pack": "ncc build",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/actions/stale.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"stale"
|
|
],
|
|
"author": "GitHub",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.4",
|
|
"@actions/github": "^2.2.0",
|
|
"@octokit/rest": "^16.43.1",
|
|
"semver": "^7.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/semver": "^7.3.1",
|
|
"@types/jest": "^26.0.5",
|
|
"@types/node": "^12.7.12",
|
|
"@typescript-eslint/parser": "^3.7.0",
|
|
"@zeit/ncc": "^0.20.5",
|
|
"eslint": "^5.16.0",
|
|
"eslint-plugin-github": "^2.0.0",
|
|
"eslint-plugin-jest": "^23.18.0",
|
|
"jest": "^24.9.0",
|
|
"jest-circus": "^26.1.0",
|
|
"js-yaml": "^3.13.1",
|
|
"prettier": "^1.19.1",
|
|
"ts-jest": "^24.2.0",
|
|
"typescript": "^3.6.4"
|
|
}
|
|
}
|