-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.21 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
47
48
49
50
51
52
{
"name": "git-batch-clone",
"version": "0.1.1",
"description": "This is a cmd tool, that helps you to clone and config multiple git repos into a specified folder structure.",
"main": "dist/gitbatch.js",
"bin": {
"git-batch": "bin/git-batch"
},
"engines": {
"node": ">= 4.1.0"
},
"scripts": {
"test": "mocha dist/test/*.js",
"prepublish": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hbxeagle/git-batch-clone.git"
},
"keywords": [
"git",
"clone",
"update",
"batch",
"multiple"
],
"author": "hbxeagle",
"license": "MIT",
"bugs": {
"url": "https://github.com/hbxeagle/git-batch-clone/issues"
},
"homepage": "https://github.com/hbxeagle/git-batch-clone#readme",
"dependencies": {
"async": "^2.1.2",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"deep-assign": "^2.0.0",
"fs-extra": "^1.0.0",
"promise": "^7.1.1",
"promisify-node": "^0.4.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.4.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"mocha": "^3.1.2"
}
}