forked from tzkhan/pr-update-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 866 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
33
34
35
{
"name": "update-pr-info-action",
"version": "1.0.0",
"description": "Update PR for GitHub Action",
"main": "index.js",
"scripts": {
"build": "ncc build index.js --out dist",
"lint": "eslint index.js",
"test": "eslint index.js && jest",
"update-package-deps": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tzkhan/pr-update-action.git"
},
"keywords": [
"GitHub",
"Actions",
"PullRequest"
],
"author": "Jamie Wright",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-wright-jamie/update-pr-info-action/issues"
},
"homepage": "https://github.com/the-wright-jamie/update-pr-info-action/#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0"
}
}