forked from phated/github-download-directory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 875 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
{
"name": "github-download-directory",
"version": "1.2.0",
"description": "Download the contents of a given directory from a repository on GitHub.",
"repository": "phated/github-download-directory",
"author": "Blaine Bublitz <blaine.bublitz@gmail.com> (https://github.com/phated)",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"main": "index.js",
"files": [
"index.js",
"bin"
],
"bin": {
"github-download-directory": "bin/github-download-directory.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"fs-mkdirp-stream": "^1.0.0",
"github-content": "^1.0.1",
"github-trees": "^0.2.0",
"minimist": "^1.2.0",
"persistent-cache": "^1.1.1"
},
"keywords": [
"github",
"fetch",
"directories",
"files",
"docs",
"documentation"
]
}