forked from zarembas/egghead-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.19 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": "egghead-downloader",
"version": "0.1.9",
"description": "Downloads single videos or series from egghead.io for you",
"author": "Simon Selg <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:SimonSelg/egghead-downloader.git"
},
"keywords": [
"egghead.io",
"downloader"
],
"engines": {
"node": ">=6.0.0"
},
"preferGlobal": true,
"bin": {
"egghead-downloader": "dist/app.js"
},
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"inquirer": "^1.2.3",
"pleasant-progress": "^1.1.0",
"request": "^2.72.0",
"request-promise": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015-node": "^6.0.1",
"eslint": "~2.10.2",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"rimraf": "^2.5.2"
},
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && mkdir dist && babel src/app.js -o dist/app.js",
"lint": "eslint . ./",
"lint:fix": "npm run lint -- --fix"
}
}