-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "cloudapp-dl",
"version": "1.0.3",
"description": "CloudApp/Zight Video Downloader is a simple Node.js command-line tool to download videos from cloudapp.com. It retrieves the video download link based on the video ID in the URL and saves the video with a specified filename or, by default, the video ID.",
"repository": {
"type": "git",
"url": "https://github.com/EcomGraduates/cloudapp-downloader.git"
},
"main": "cloudapp-dl.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"cloudapp-dl": "./cloudapp-dl.js",
"zight-dl": "./cloudapp-dl.js"
},
"author": "ECOMGRADUATES LLC",
"license": "MIT",
"keywords": [
"cloudapp",
"cloudapp downloader",
"cloudapp video download",
"bulk downloader",
"cloudapp bulk download",
"zight downloader",
"zight video download",
"zight bulk download",
"zight"
],
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"path": "^0.12.7",
"yargs": "^17.7.2"
}
}