-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "su-downloader3",
"version": "1.1.1",
"description": "HTTP segmented file downloader",
"keywords": [
"http",
"util",
"utility",
"downloader",
"download manager",
"pause",
"resumable",
"progress",
"multiple",
"scheduler"
],
"main": "build/index.js",
"scripts": {
"build": "babel src --out-dir build --source-maps true",
"build-watch": "nodemon --watch ./src --exec \"npm run build\"",
"test": "jest"
},
"bin": {
"sud3": "./bin/index.js"
},
"author": "Joseph Surin <joseph.surin@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/josephsurin/su-downloader3.git"
},
"bugs": {
"url": "https://github.com/josephsurin/su-downloader3/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-private-methods": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"jest": "^24.1.0"
},
"dependencies": {
"commander": "^2.19.0",
"graceful-fs": "^4.1.15",
"request": "^2.88.0",
"rxjs": "^6.4.0",
"bytes": "^3.1.0",
"draftlog": "^1.0.12"
}
}