-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 813 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 813 Bytes
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
{
"name": "pull-request-updater",
"version": "1.0.0",
"description": "GitHub Actions to Update the pull request branch with the base branch",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "ncc build src/index.js --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechuli/pull-request-updater.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wechuli/pull-request-updater/issues"
},
"homepage": "https://github.com/wechuli/pull-request-updater#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"axios": "^1.3.4",
"picomatch": "^2.3.1"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"jest": "^29.3.1"
}
}