forked from jprichardson/node-github-download
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 833 Bytes
/
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
{
"name": "github-download",
"version": "0.3.0",
"description": "Easily download Github repos without any external dependencies such as Git, Tar, Unzip, etc.",
"homepage": [
""
],
"repository": {
"type": "git",
"url": "[email protected]:jprichardson/node-github-download.git"
},
"keywords": [
"github",
"repository",
"repo",
"download",
"fetch",
"git"
],
"author": "JP Richardson <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": ""
}
],
"dependencies": {
"request": "~2.12.0",
"vcsurl": "~0.1.0",
"adm-zip": "~0.4.3",
"fs-extra": "^0.9.1"
},
"devDependencies": {
"testutil": "~0.5.0",
"mocha": "*",
"nock": "~0.14.3"
},
"main": "./lib/github-download.js",
"scripts": {
"test": "mocha test"
}
}