-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
33 lines (33 loc) · 912 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
{
"name": "loom-dl",
"version": "1.0.8",
"description": "Loom Video Downloader is a simple Node.js command-line tool to download videos from loom.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/loom-downloader.git"
},
"main": "loom-dl.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"loom-dl": "./loom-dl.js"
},
"author": "ECOMGRADUATES LLC",
"license": "MIT",
"keywords": [
"loom",
"loom downloader",
"loom video download",
"bulk downloader",
"loom bulk download"
],
"dependencies": {
"axios": "^1.4.0",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"path": "^0.12.7",
"yargs": "^17.7.2"
}
}