-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.38 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
{
"name": "libxget",
"version": "0.11.0",
"description": "Non-interractive, chunk-based, web content retriever",
"exports": "./lib/index.js",
"type": "module",
"types": "typings/index.d.ts",
"bin": {
"xget": "cli.js"
},
"engines": {
"node": ">=12"
},
"files": [
"lib",
"typings"
],
"directories": {
"lib": "lib"
},
"keywords": [
"web",
"http",
"util",
"wget",
"chunk",
"chunks",
"stream",
"request",
"utility",
"segment",
"segments",
"async-stream"
],
"author": {
"name": "Miraculous Owonubi",
"email": "omiraculous@gmail.com"
},
"maintainers": [
"Miraculous Owonubi <omiraculous@gmail.com>"
],
"repository": {
"type": "git",
"url": "git@github.com:miraclx/libxget-js.git"
},
"bugs": {
"url": "https://github.com/miraclx/libxget-js/issues"
},
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.26.0",
"commander": "^6.2.1",
"content-disposition": "^0.5.3",
"content-type": "^1.0.4",
"es-main": "^1.2.0",
"http-range": "^1.0.0",
"linkedlist": "^1.0.1",
"merge2": "^1.4.1",
"mime-types": "^2.1.28",
"stringd-colors": "^1.10.0",
"xbytes": "^1.7.0",
"xprogress": "^0.20.0",
"xresilient": "^0.8.2"
},
"devDependencies": {
"eslint": "8.19.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1"
}
}