-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "git-switch-branch",
"version": "0.6.0",
"description": "Switch or prune recent GIT branches blazingly fast",
"keywords": [
"git",
"recent",
"branch",
"prune",
"switch",
"checkout",
"builds",
"pipelines",
"bitbucket",
"atlassian"
],
"type": "module",
"bin": {
"git-switch-branch": "cmd/git-switch-branch.js",
"git-prune-branches": "cmd/git-prune-branches.js",
"git-builds": "cmd/git-builds.js"
},
"repository": {
"type": "git",
"url": "https://github.com/macku/git-switch-branch.git"
},
"author": {
"name": "Maciej Adamczak",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"file-system-cache": "^2.1.1",
"find-cache-dir": "^4.0.0",
"inquirer": "^9.2.5",
"inquirer-autocomplete-prompt": "^3.0.0",
"zx": "^7.2.2"
},
"devDependencies": {
"husky": "^8.0.3",
"import-sort-style-module": "^6.0.0",
"prettier": "^2.8.8",
"prettier-plugin-import-sort": "^0.0.7",
"pretty-quick": "^3.1.3"
},
"scripts": {
"prepare": "husky install"
},
"engines": {
"node": ">=16"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}