-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 997 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
43
44
45
46
{
"name": "github-download-directory",
"version": "3.0.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": ">=12.0.0"
},
"main": "index.js",
"files": [
"index.js",
"bin"
],
"bin": {
"github-download-directory": "bin/github-download-directory.js"
},
"scripts": {
"lint": "eslint .",
"test": "nyc mocha --async-only"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"keyv": "^4.0.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"expect": "^27.0.0",
"keyv-file": "^0.2.0",
"mocha": "^8.0.0",
"nyc": "^15.1.0"
},
"prettier": {
"singleQuote": true
},
"keywords": [
"github",
"fetch",
"directories",
"files",
"docs",
"documentation"
]
}