-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 KB
/
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
43
44
45
46
47
{
"name": "git-lab-cli",
"version": "2.0.12",
"repository": "https://github.com/vishwanatharondekar/gitlab-cli",
"description": "Create a merge request from command line in gitlab",
"keywords": [
"cli",
"gitlab",
"gitlab-cli",
"git",
"command-line",
"cli-utilities",
"cli-utility",
"github",
"javascript",
"command-line-tool",
"commandline",
"utility",
"utilities",
"nodejs",
"merge-request",
"merge-req"
],
"main": "index.js",
"scripts": {
"start": "node index.js"
},
"author": "Vishwanath Arondekar <[email protected]> https://github.com/vishwanatharondekar",
"license": "MIT",
"bin": {
"gitlab-cli": "index.js",
"git-lab": "index.js",
"lab": "index.js"
},
"dependencies": {
"@gitbeaker/node": "^28.4.1",
"colors": "^1.1.2",
"commander": "^2.12.1",
"dotenv": "^4.0.0",
"editor": "^1.0.0",
"git-url-parse": "^11.1.3",
"open": "7.2.0",
"promise": "^7.1.1",
"readline-sync": "^1.4.7",
"shell-escape": "^0.2.0"
}
}