-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.03 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.03 KB
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
{
"name": "git-split-branch",
"version": "0.1.0",
"description": "split your branch into multiple by directories",
"main": "bin/index.js",
"repository": "git@github.com-icrosil:icrosil/git-split-branch.git",
"author": "Illia Olenchenko <icrosil@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"git",
"split",
"branch",
"cli"
],
"bin": {
"git-split-branch": "./bin/index.js"
},
"files": [
"./src",
"./bin"
],
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"fuzzy-search": "^3.0.1",
"inquirer": "^6.3.1",
"lodash": "^4.17.11",
"log": "^6.0.0",
"log-node": "^7.0.0",
"readdirp": "^3.0.2",
"simple-git": "^1.113.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"prettier-eslint": "^8.8.2"
},
"engines": {
"node": ">=8"
}
}