-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "@xniva/git-shortcuts",
"version": "1.7.1",
"description": "Shortcuts for the commonly used git commands",
"repository": "https://github.com/kavinkuma6/git-shortcuts",
"bin": {
"gb": "bin/git_current_branch.js",
"gcm": "bin/git_checkout_master.js",
"gf": "bin/git_fetch.js",
"ghr": "bin/git_hard_reset_last_commit.js",
"gl": "bin/git_log.js",
"gmm": "bin/git_merge_master.js",
"gph": "bin/git_push_head.js",
"gpm": "bin/git_pull_master.js",
"gs": "bin/git_status.js",
"gsr": "bin/git_soft_reset_last_commit.js",
"glp": "bin/git_print_last_commit_message.js",
"glc": "bin/git_print_copy_last_commit_message.js",
"gr": "bin/git_restore.js",
"gsf": "bin/git_see_feature_files.js",
"gma": "bin/git_merge_abort.js",
"grb": "bin/git_reset_current_branch.js",
"gphf": "bin/git_push_head_force.js",
"gc": "bin/git_commit_message.js",
"gca": "bin/git_add_commit_message.js",
"gcpm": "bin/git_checkout_pull_master.js"
},
"author": "Kavinkumar R",
"license": "MIT",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"dotenv": "16.4.5",
"inquirer": "^9.1.4",
"open": "10.1.0"
}
}