-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 939 Bytes
/
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
{
"name": "youtube",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"drink": "./drink.js"
},
"scripts": {
"start": "npm i; run-s -l start:*",
"start:clean": "rimraf output",
"start:output_dir": "mkdir output",
"start:install_globally": "npm i -g",
"start:run_stuff": "drink -h",
"demo": "run-s -ln demo:*",
"demo:clean": "rimraf output",
"demo:output_dir": "mkdir output",
"demo:run_stuff": "drink -y 'https://www.youtube.com/feeds/videos.xml?channel_id=UCfBeRuwRQuYZXUolxVoH0PA'",
"demo:verify": "ls -l ./output",
"clean": "rimraf output",
"test": "npm start; npm run demo"
},
"author": "",
"license": "ISC",
"dependencies": {
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^2.11.0",
"npm-run-all": "^4.1.1",
"request": "^2.83.0",
"rimraf": "^2.6.2",
"stream-replace": "^1.0.0",
"xml2js": "^0.4.19"
}
}