-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 882 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": "gittar",
"version": "0.1.1",
"repository": "lukeed/gittar",
"description": ":guitar: Download and/or Extract git repositories (GitHub, GitLab, BitBucket). Cross-platform and Offline-first!",
"main": "lib/index.js",
"license": "MIT",
"files": [
"lib"
],
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "lukeed.com"
},
"engines": {
"node": ">=4"
},
"scripts": {
"test": "tape test/*.js | tap-spec"
},
"keywords": [
"archive",
"bitbucket",
"download",
"extract",
"git",
"github",
"gitlab",
"offline",
"offline-first",
"repo",
"repository",
"scaffold",
"tarball"
],
"dependencies": {
"mkdirp": "^0.5.1",
"tar": "^4.4.1"
},
"devDependencies": {
"rimraf": "^2.6.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}