-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 963 Bytes
/
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
{
"name": "cget",
"version": "0.2.1",
"description": "Robust streaming parallel download manager with filesystem cache",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"tsc": "tsc",
"prepublish": "tsc -p src",
"test": "tsc -p test && node test/test.js test/cache"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/charto/cget.git"
},
"bugs": {
"url": "https://github.com/charto/cget/issues"
},
"homepage": "https://github.com/charto/cget#readme",
"keywords": [
"cache",
"caching",
"request",
"fetch",
"parallel",
"download",
"manager",
"http"
],
"dependencies": {
"@types/bluebird": "^3.5.10",
"@types/node": "^8.0.28",
"@types/request": "2.0.3",
"bluebird": "^3.5.0",
"cwait": "^1.1.1",
"request": "~2.81.0"
},
"devDependencies": {
"typescript": "^2.5.2"
}
}