-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 906 Bytes
/
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
{
"name": "pr-automerge-action",
"version": "1.4.0",
"description": "GitHub Action to automatically merge pull requests when some conditions are met",
"scripts": {
"build": "ncc build index.js",
"lint": "eslint ./",
"test": "nyc mocha",
"coverage": "nyc --reporter=lcov --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavideViolante/pr-automerge-action.git"
},
"author": "Davide Violante",
"license": "MIT",
"bugs": {
"url": "https://github.com/DavideViolante/pr-automerge-action/issues"
},
"homepage": "https://github.com/DavideViolante/pr-automerge-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"axios": "~1.7.9"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0"
}
}