forked from udacimak/udacimak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "udacimak",
"version": "1.3.0",
"description": "Udacity Nanodegree/course downloader and renderer",
"main": "index.js",
"scripts": {
"coverage": "jest --coverage src",
"lint": "eslint ./src",
"prebuild": "rimraf lib && npm run lint",
"build": "babel src --out-dir lib --copy-files",
"watch": "nodemon --watch src --exec \"rimraf lib && babel src --out-dir lib --copy-files\"",
"test": "echo \"No tests\" ",
"release": "np",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udacimak/udacimak.git"
},
"keywords": [
"udacity",
"udacimak",
"udacious",
"downloader",
"nanodegree",
"udacity nanodegree",
"udacity downloader",
"udacity nanodegree downloader",
"udacity course downloader",
"udacity download nanodegree",
"udacity download course",
"udacity download videos",
"udacity download content",
"udacity content downloader"
],
"author": "udacimak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/udacimak/udacimak/issues"
},
"homepage": "https://github.com/udacimak/udacimak#readme",
"preferGlobal": true,
"bin": {
"udacimak": "./lib/index.js"
},
"engines": {
"node": ">=7.8.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"faker": "^4.1.0",
"jest": "^23.6.0",
"mock-fs": "^4.7.0",
"nock": "^10.0.2",
"nodemon": "^1.18.7",
"np": "^3.0.4",
"regenerator-runtime": "^0.12.1"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"cli-progress": "^2.1.0",
"commander": "^2.18.0",
"compare-versions": "^3.4.0",
"copy-dir": "^0.4.0",
"directory-tree": "^2.1.0",
"filenamify": "^2.1.0",
"fs-extra": "^7.0.1",
"handlebars": "^4.0.12",
"inquirer": "^6.2.0",
"npm": "^6.4.1",
"ora": "^3.0.0",
"pkginfo": "^0.4.1",
"progress-stream": "^2.0.0",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"rimraf": "^2.6.2",
"serialize-error": "^3.0.0",
"showdown": "^1.8.6",
"user-settings": "^0.2.0",
"winston": "^3.1.0",
"youtube-dl": "przemyslawpluta/node-youtube-dl#3349cbb6e067b6c9e7605acfa4f9d1ccc895fb0c"
}
}