mirror of
https://github.com/dependabot/fetch-metadata.git
synced 2026-03-12 18:07:12 -04:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "dependabot-pull-request-action",
|
|
"version": "1.0.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"
|
|
],
|
|
"author": "dependabot",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.3.0",
|
|
"@actions/github": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.23",
|
|
"@types/node": "^15.6.0",
|
|
"@types/yargs": "^17.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
|
"@typescript-eslint/parser": "^4.25.0",
|
|
"@vercel/ncc": "^0.28.5",
|
|
"dotenv": "^10.0.0",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-standard": "^16.0.3",
|
|
"eslint-plugin-import": "^2.23.3",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"jest": "^26.6.3",
|
|
"nock": "^13.0.11",
|
|
"ts-jest": "^26.5.6",
|
|
"ts-node": "^10.0.0",
|
|
"typescript": "^4.2.4",
|
|
"yaml": "^1.10.2",
|
|
"yargs": "^17.0.1"
|
|
}
|
|
}
|