-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
37 lines (37 loc) · 849 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",
"version": "0.5.0",
"description": "Easily download Github repos without any external dependencies such as Git, Tar, Unzip, etc.",
"repository": {
"type": "git",
"url": "[email protected]:jprichardson/node-github-download.git"
},
"keywords": [
"github",
"repository",
"repo",
"download",
"fetch",
"git"
],
"author": "JP Richardson <[email protected]>",
"license": "MIT",
"dependencies": {
"adm-zip": "~0.4.3",
"fs-extra": "^0.24.0",
"request": "^2.12.0",
"vcsurl": "~0.1.0"
},
"devDependencies": {
"testutil": "~0.5.0",
"mocha": "2.x",
"nock": "~0.14.3",
"standard": "5.x"
},
"main": "./lib/github-download.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "mocha test"
}
}