-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dzfg",
"version": "0.1.2",
"description": "Download Zipball From GitHub, extract it into a new directory, install dependencies.",
"bin": {
"dzfg": "src/bin.js",
"dl-zip-from-gh": "src/bin.js",
"download-zip-from-gh": "src/bin.js",
"download-zip-from-github": "src/bin.js",
"download-zipball-from-gh": "src/bin.js",
"download-zipball-from-github": "src/bin.js"
},
"main": "src/lib.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"test": "npm run lint && mocha -R spec --ui bdd --timeout 5000 \"test/**/*.test.js\" && echo '✔ Done ✔\n'"
},
"repository": {
"type": "git",
"url": "git://github.com/neonexus/dzfg.git"
},
"files": [
"src/bin.js",
"src/lib.js",
"src/utilities.js"
],
"keywords": [
"download",
"zipball",
"zip",
"github",
"extract",
"extraction",
"cloning",
"clone",
"install"
],
"author": "NeoNexus DeMortis <neonexus.demortis@gmail.com>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/neonexus/dzfg/issues"
},
"homepage": "https://github.com/neonexus/dzfg#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/neonexus"
}
],
"dependencies": {
"extract-zip": "^2.0.1"
},
"devDependencies": {
"chai": "4.3.10",
"chai-spies": "1.0.0",
"eslint": "8.51.0",
"mocha": "10.2.0"
}
}