-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "dependabot-pull-request-action",
"version": "2.5.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.11.1",
"@actions/github": "^6.0.1",
"@octokit/request-error": "^5.1.1",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.18",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.5.0",
"eslint": "^9.26.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": "^14.0.4",
"ts-jest": "^29.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"yaml": "^2.7.1",
"yargs": "^17.7.2"
}
}