-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
46
47
48
49
50
51
52
53
{
"name": "smart-downloader",
"version": "1.2.1",
"description": "HTTP(s) downloader, which resumes your downloads and supports download speed limits and download progress updates",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "./node_modules/.bin/gulp default",
"test": "./node_modules/.bin/gulp test"
},
"keywords": [
"download",
"downloader",
"file",
"http",
"limit",
"speed",
"throttled",
"resumable",
"resume",
"md5",
"extract",
"decompress",
"unzip"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gegis/smart-downloader.git"
},
"bugs": {
"url": "https://github.com/gegis/smart-downloader/issues"
},
"author": "Egidijus Gegeckas",
"license": "MIT",
"dependencies": {
"command-exists": "^1.2.2",
"decompress": "^4.2.0",
"fs-extra": "^5.0.0",
"lodash": "^4.17.5",
"mdfive": "^1.0.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-istanbul": "^1.1.3",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^2.2.0",
"gulp-util": "^3.0.8",
"jshint": "^2.9.5"
}
}