forked from wuchengwei/node-wget
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 KB
/
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
{
"name": "wget-improved",
"version": "3.4.0",
"description": "wget in nodejs, forked from wuchengwei/node-wget to add improvements and help maintain the project",
"keywords": [
"download",
"http",
"https",
"ftp",
"proxy",
"wget"
],
"author": "Bearjaws <michael.a.barajas@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/bearjaws/node-wget.git"
},
"contributors": [
{
"name": "Michael Barajas"
}
],
"homepage": "https://github.com/bearjaws/node-wget",
"bin": {
"nwget": "./bin/nwget"
},
"typings": "index.d.ts",
"dependencies": {
"minimist": "1.2.6",
"tunnel": "0.0.6"
},
"engines": {
"node": ">= 0.6.18"
},
"license": "MIT",
"devDependencies": {
"chai": "4.0.2",
"express": "4.16.3",
"mocha": "9.2.1",
"request": "2.88.0"
},
"scripts": {
"test": "mocha test/test.js --exit"
}
}