This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
79 lines (79 loc) · 1.83 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
71
72
73
74
75
76
77
78
79
{
"author": {
"name": "Riaz Laskar @riazXrazor"
},
"bin": {
"udl": "./bin/run"
},
"bugs": {
"url": "https://github.com/riazXrazor/udemy-dl/issues"
},
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^2.2.1",
"asciiart-logo": "^0.2.6",
"async": "^3.1.0",
"cheerio": "^1.0.0-rc.3",
"cli-autoupdate": "^2.0.4",
"cli-ux": "^5.3.2",
"colors": "^1.4.0",
"dotenv": "^8.1.0",
"fs-extra": "^8.1.0",
"inquirer": "^7.0.0",
"lodash": "^4.17.15",
"node-notifier": "^6.0.0",
"node-vtt-to-srt": "^1.0.0",
"preferences": "^1.0.2",
"progress": "^2.0.3",
"query-string": "^6.9.0",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"sanitize-filename": "^1.6.3",
"superagent": "^5.1.0",
"update-notifier": "^3.0.1"
},
"description": "Nodejs script to download a udemy.com course, for personal offline use.",
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"globby": "^10.0.1",
"rimraf": "^3.0.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/riazXrazor/udemy-dl",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "src/index.js",
"name": "udemy-dl",
"oclif": {
"commands": "./src/commands",
"hooks": {
"init": "./src/hooks/splash"
},
"bin": "udl",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/riazXrazor/udemy-dl.git"
},
"scripts": {
"postpack": "rimraf oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
},
"version": "2.0.7"
}