-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "git-branch-cli",
"version": "1.3.0",
"description": "A client for creating git branch easily using interactive questions.",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arkanii/git-branch-cli.git"
},
"author": "Théo Frison (Arkanii)",
"license": "MIT",
"bin": {
"git-branch": "src/cli.js"
},
"files": [
"src"
],
"type": "module",
"bugs": {
"url": "https://github.com/Arkanii/git-branch-cli/issues"
},
"homepage": "https://github.com/Arkanii/git-branch-cli#readme",
"keywords": [
"cli",
"git",
"branch"
],
"dependencies": {
"execa": "^5.1.1",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.0",
"inquirer-autocomplete-prompt": "^1.4.0",
"load-json-file": "^7.0.1",
"meow": "^10.1.1",
"slugify": "^1.6.1"
},
"np": {
"tests": false,
"message": ":bookmark: Bump version %s"
}
}