-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
45 lines (45 loc) · 1.23 KB
/
package.json
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
{
"name": "github-action-merge-dependabot",
"version": "3.11.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": "tap",
"prepare": "husky install"
},
"author": {
"name": "Salman Mitha",
"email": "[email protected]"
},
"contributors": [
"Simone Busoli <[email protected]>"
],
"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.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"tap": "^21.0.1"
}
}