forked from tusharmath/Multi-threaded-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.84 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mt-downloader",
"description": "resumable multi-threaded download over http/https",
"author": {
"name": "Tushar Mathur <tusharmath@gmail.com>",
"url": "http://tusharm.com"
},
"bin": {
"mtd": "bin/mtd.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tusharmath/Multi-threaded-downloader.git"
},
"scripts": {
"test": "ava",
"lint": "standard --verbose | snazzy",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">= 5.0.0"
},
"main": "index.js",
"dependencies": {
"graceful-fs": "^4.1.3",
"humanize-plus": "^1.8.1",
"immutable": "^3.7.5",
"lodash": "^4.0.0",
"meow": "^3.7.0",
"progress": "^1.1.8",
"reactive-storage": "^3.0.0",
"request": "^2.60.0",
"rx": "^4.0.7",
"valid-url": "^1.0.9"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.14.0",
"cz-conventional-changelog": "^1.1.5",
"express": "^4.13.1",
"ghooks": "^1.0.3",
"semantic-release": "^4.3.5",
"sinon": "^1.17.2",
"snazzy": "^4.0.0",
"standard": "^7.0.1",
"validate-commit-msg": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"commit-msg": "validate-commit-msg"
},
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
]
}
},
"publishConfig": {
"tag": "next"
},
"standard": {
"ignore": [
"test/integration/**"
]
},
"keywords": [
"segmented",
"file",
"transfer",
"protocol",
"stop",
"resume",
"http",
"download",
"threads",
"downloader",
"multi-threaded",
"manager"
]
}