-
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "github-action-merge-dependabot",
"version": "3.12.0",
"description": "A GitHub action to automatically merge and approve Dependabot pull requests",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"build": "ncc build src/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "c8 --100 node --test"
},
"author": {
"name": "Salman Mitha",
"email": "SalmanMitha@gmail.com"
},
"contributors": [
"Simone Busoli <simone.busoli@nearform.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/github-action-merge-dependabot.git"
},
"bugs": {
"url": "https://github.com/fastify/github-action-merge-dependabot/issues"
},
"homepage": "https://github.com/fastify/github-action-merge-dependabot#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"actions-toolkit": "github:nearform/actions-toolkit"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"c8": "^11.0.0",
"eslint": "^9.39.2",
"neostandard": "^0.13.0",
"proxyquire": "^2.1.3",
"sinon": "^21.1.2"
}
}