forked from tusharmath/Multi-threaded-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.6 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "mt-downloader",
"description": "resumable multi-threaded download over http/https",
"author": {
"name": "Tushar Mathur <tusharmath@gmail.com>",
"url": "http://tusharm.com"
},
"bin": {
"mtd": ".dist/bin/mtd.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tusharmath/Multi-threaded-downloader.git"
},
"scripts": {
"prettier": "git ls-files | grep .js$ | xargs prettier --print-width 80 --single-quote --no-semi --no-bracket-spacing --write",
"prepublish": "npm run build",
"build": "babel src --out-dir .dist --source-maps true",
"test": "ava",
"lint": "standard --verbose | snazzy",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"doc": "jsdoc2md ./src/** --global-index-format grouped --template README.template.md > README.md"
},
"engines": {
"node": ">= 5.0.0"
},
"main": ".dist/index.js",
"dependencies": {
"graceful-fs": "^4.1.11",
"humanize-plus": "^1.8.1",
"meow": "^3.7.0",
"muxer": "^1.0.1",
"progress": "^1.1.8",
"ramda": "^0.24.0",
"request": "^2.79.0",
"rx": "^4.0.7",
"valid-url": "^1.0.9"
},
"license": "MIT",
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-register": "^6.18.0",
"coveralls": "^2.11.15",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.10.2",
"express": "^4.13.1",
"ghooks": "^1.3.2",
"jsdoc-to-markdown": "^2.0.1",
"nyc": "^10.0.0",
"prettier": "^1.11.1",
"semantic-release": "^6.3.2",
"sinon": "^2.3.2",
"snazzy": "^5.0.0",
"standard": "^8.1.0",
"validate-commit-msg": "^2.8.2"
},
"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"
],
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"ava": {
"require": "babel-register"
}
}