-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
executable file
·55 lines (55 loc) · 1.23 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
{
"name": "fast-download",
"version": "0.3.6",
"description": "accelerated (multiple connections) http download stream",
"main": "lib/FastDownload.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "eslint \"**/*.js\" && node test/basic.js",
"format": "prettier-eslint --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "http://github.com/zenflow/node-fast-download"
},
"keywords": [
"fast",
"speedy",
"quick",
"accelerated",
"acceleration",
"accelerate",
"http",
"download",
"request",
"stream",
"streaming"
],
"author": "Matthew Francis Brunetti",
"license": "MIT",
"bugs": {
"url": "https://github.com/zenflow/node-fast-download/issues"
},
"homepage": "https://github.com/zenflow/node-fast-download",
"dependencies": {
"async": "^0.8.0",
"charm": "^0.2.0",
"colors": "^0.6.2",
"commander": "^2.2.0",
"lodash": "^2.4.1",
"request": "^2.34.0"
},
"devDependencies": {
"express": "^4.15.4",
"from2": "^2.3.0",
"get-port": "^3.1.0",
"hasha": "^3.0.0",
"p-event": "^1.3.0",
"prettier-eslint-cli": "^4.1.1",
"standard": "^10.0.3",
"tape": "^4.8.0",
"tempy": "^0.1.0"
}
}