mirror of
https://github.com/dependabot/fetch-metadata.git
synced 2026-03-12 18:07:12 -04:00
Bumps the eslint-dependencies group with 4 updates: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser), [eslint](https://github.com/eslint/eslint) and [eslint-config-standard](https://github.com/standard/eslint-config-standard). Updates `@typescript-eslint/eslint-plugin` from 5.59.7 to 5.61.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.61.0/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 5.59.7 to 5.61.0 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v5.61.0/packages/parser) Updates `eslint` from 8.41.0 to 8.44.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.41.0...v8.44.0) Updates `eslint-config-standard` from 17.0.0 to 17.1.0 - [Changelog](https://github.com/standard/eslint-config-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/standard/eslint-config-standard/compare/v17.0.0...v17.1.0) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-dependencies - dependency-name: "@typescript-eslint/parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-dependencies - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-dependencies - dependency-name: eslint-config-standard dependency-type: direct:development update-type: version-update:semver-minor dependency-group: eslint-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "dependabot-pull-request-action",
|
|
"version": "1.6.0",
|
|
"description": "Parse Dependabot commit metadata to automate PR handling",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts",
|
|
"lint": "eslint . --ext .ts",
|
|
"test": "jest",
|
|
"dry-run": "ts-node src/dry-run.ts"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"dependabot",
|
|
"merge",
|
|
"approve"
|
|
],
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=7.10.0"
|
|
},
|
|
"author": "dependabot",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/github": "^5.1.1",
|
|
"pluralize": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^20.3.3",
|
|
"@types/yargs": "^17.0.24",
|
|
"@typescript-eslint/eslint-plugin": "^5.61.0",
|
|
"@typescript-eslint/parser": "^5.61.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.44.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"jest": "^26.6.3",
|
|
"nock": "^13.3.1",
|
|
"ts-jest": "^26.5.6",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.5",
|
|
"yaml": "^2.2.1",
|
|
"yargs": "^17.7.2"
|
|
}
|
|
}
|