-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.75 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
60
61
62
{
"name": "drfg",
"version": "0.0.4",
"description": "Download Release From GitHub, extract it into a new directory, and install dependencies, with a single command.",
"bin": {
"drfg": "src/bin.js",
"dl-rl-from-gh": "src/bin.js",
"download-rl-from-gh": "src/bin.js",
"download-rl-from-github": "src/bin.js",
"download-release-from-gh": "src/bin.js",
"download-release-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/drfg.git"
},
"files": [
"src/bin.js",
"src/lib.js",
"src/utilities.js"
],
"keywords": [
"download",
"release",
"tar",
"tarball",
"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/drfg/issues"
},
"homepage": "https://github.com/neonexus/drfg#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/neonexus"
}
],
"dependencies": {
"extract-zip": "^2.0.1"
},
"devDependencies": {
"chai": "4.3.10",
"chai-spies": "1.1.0",
"eslint": "8.53.0",
"mocha": "10.2.0"
}
}