forked from marufsiddiqui/ehead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "ehead",
"version": "1.0.0",
"description": "egghead video downloader",
"bin": {
"ehead": "./bin/cli.js"
},
"scripts": {
"test": "babel-node ./index.js --dump --url=https://egghead.io/lessons/javascript-mobx-and-react-intro-syncing-the-ui-with-the-app-state-using-observable-and-observer",
"build": "babel ./index.js --out-dir=./bin/"
},
"engines": {
"node": ">=5"
},
"keywords": [
"egghead",
"video",
"downloader"
],
"author": "mr47",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"cheerio": "^0.20.0",
"cli-table": "^0.3.1",
"download": "^5.0.2",
"lodash": "^4.14.1",
"request": "^2.74.0",
"request-promise": "^4.0.2",
"yargs": "^4.8.1"
},
"bugs": {
"url": "https://github.com/mr47/ehead/issues"
},
"homepage": "https://github.com/mr47/ehead#Readme",
"repository": {
"type": "git",
"url": "https://github.com/mr47/ehead"
}
}