forked from zarembas/egghead-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 964 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 964 Bytes
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
{
"name": "egghead-downloader",
"version": "0.0.1",
"description": "Downloads videos from egghead.io for you",
"author": "Simon Selg <simon@selg.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:SimonSelg/egghead-downloader.git"
},
"preferGlobal": true,
"bin": {
"egghead-downloader": "dist/app.js"
},
"dependencies": {
"babel-polyfill": "^6.3.14",
"chalk": "^1.1.1",
"commander": "^2.9.0",
"request": "^2.67.0",
"request-promise": "^1.0.2"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"babel-plugin-syntax-async-functions": "^6.3.13",
"babel-plugin-transform-regenerator": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-standard": "^4.4.0"
},
"scripts": {
"build": "rm -rf dist && mkdir dist && babel index.js -o dist/app.js",
"lint": "eslint . ./",
"lint:fix": "npm run lint -- --fix"
}
}