-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "eggs-benny",
"version": "1.0.6",
"description": "Downloads egghead.io videos an entire course or technology at a time, for delicious offline comsumption.",
"main": "index.js",
"scripts": {
"build": "tsc -p ./src",
"build:watch": "tsc -p ./src -w",
"clean": "rimraf ./dist",
"start": "node ./",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run build"
},
"bin": {
"eggs-benny": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeandcats/eggs-benny.git"
},
"keywords": [
"egghead",
"egghead.io",
"download",
"downloader",
"video",
"course",
"technology",
"tutorial"
],
"author": "Ben <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeandcats/eggs-benny/issues"
},
"homepage": "https://github.com/codeandcats/eggs-benny#readme",
"devDependencies": {
"@types/bluebird": "^3.5.2",
"@types/chalk": "^0.4.31",
"@types/change-case": "^2.3.1",
"@types/cheerio": "^0.22.0",
"@types/commander": "^2.3.31",
"@types/filesize": "^3.2.15",
"@types/linq": "^2.2.33",
"@types/minimatch": "^2.0.29",
"@types/mkdirp": "^0.3.29",
"@types/mz": "0.0.30",
"@types/ora": "^0.3.31",
"@types/pad": "^1.0.0",
"@types/request": "0.0.42",
"@types/request-promise": "^4.1.33",
"@types/sanitize-filename": "^1.1.28",
"rimraf": "^2.6.1",
"typescript": "^2.2.1"
},
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"change-case": "^3.0.1",
"cheerio": "^0.22.0",
"circular-json": "^0.3.1",
"commander": "^2.9.0",
"feedparser": "^2.1.0",
"filesize": "^3.5.6",
"linq": "^3.0.7",
"minimatch": "^3.0.3",
"mkdirp": "^0.5.1",
"mz": "^2.6.0",
"ora": "^1.2.0",
"pad": "^1.1.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"sanitize-filename": "^1.6.1",
"terminal-kit": "^1.0.3",
"terminal-menu": "^2.1.1"
}
}