-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
34 lines (34 loc) · 786 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
{
"name": "pr-update-action",
"version": "2.0.0",
"description": "PR Update GitHub Action",
"main": "index.js",
"scripts": {
"build": "ncc build index.js --out dist",
"lint": "eslint index.js",
"test": "eslint index.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tzkhan/pr-update-action.git"
},
"keywords": [
"GitHub",
"Actions",
"PullRequest"
],
"author": "Tamim Khan",
"license": "MIT",
"bugs": {
"url": "https://github.com/tzkhan/pr-update-action/issues"
},
"homepage": "https://github.com/tzkhan/pr-update-action/#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}