-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1009 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
36
37
38
39
40
41
42
{
"name": "create-pull-request",
"version": "1.4.0",
"description": "Allow to open the URL to create a pull request pointing to the base branch",
"keywords": [
"cli",
"terminal",
"from terminal",
"github",
"git",
"create pull request",
"create pr",
"open pr",
"pr",
"pull request"
],
"author": "Danny Feliz <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/DannyFeliz/create-pull-request/issues/new",
"repository": {
"type": "git",
"url": "https://github.com/DannyFeliz/create-pull-request"
},
"dependencies": {
"chalk": "^4.1.2",
"current-git-branch": "^1.1.0",
"git-remote-origin-url": "^3.1.0",
"open": "^7.4.2"
},
"engines": {
"node": ">=8"
},
"files": [
"create-pull-request.js"
],
"bin": {
"create-pull-request": "./create-pull-request.js",
"cpr": "./create-pull-request.js",
"open-pr": "./create-pull-request.js",
"openpr": "./create-pull-request.js"
}
}