Files
fetch-metadata/package.json
Jeff Widman 553e555f81 Bump to ESLint 9 (#606)
This bumps to ESLint 9:

* Bump the main `eslint` package to v9
* Remove the `eslint-config-standard` package as it doesn't yet support
  ESLint 9 and doesn't appear to be actively maintained... I considered
  some of the alternatives, but they've got some drama attached (https://github.com/standard/standard/issues/1948)
  so it seemed simplest for now to not worry about replacing it. This is
  a linter, so it's easy to switch to a different config if we want to
  later.
* Migrate to the new [Flat config format](https://eslint.org/docs/user-guide/configuring/configuration-files#using-the-flat-format).
2025-03-21 11:25:45 -07:00

54 lines
1.3 KiB
JSON

{
"name": "dependabot-pull-request-action",
"version": "2.3.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": ">=20.5.0",
"npm": ">=10.0.0"
},
"author": "dependabot",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/request-error": "^5.1.1",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.5",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"nock": "^13.5.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"yaml": "^2.4.0",
"yargs": "^17.7.2"
}
}