mirror of
https://github.com/dependabot/fetch-metadata.git
synced 2026-03-12 18:07:12 -04:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "dependabot-pull-request-action",
|
|
"version": "2.1.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",
|
|
"pluralize": "^8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.11.20",
|
|
"@types/yargs": "^17.0.32",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
"@typescript-eslint/parser": "^7.0.2",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^8.50.0",
|
|
"eslint-config-standard": "^17.1.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^6.1.1",
|
|
"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"
|
|
}
|
|
}
|