forked from przemyslawpluta/node-youtube-dl
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 711 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 711 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
{
"name": "youtube-dl",
"description": "youtube-dl driver for node",
"keywords": ["youtube", "video", "download"],
"version": "1.2.4",
"repository": {
"type": "git",
"url": "git://github.com/fent/node-youtube-dl.git"
},
"author": "Roly Fentanes (https://github.com/fent)",
"main": "./lib/youtube-dl.js",
"bin": "./bin/youtube-dl",
"directories": {
"lib": "./lib"
},
"scripts": {
"install": "node ./scripts/download.js",
"update": "node ./scripts/download.js",
"test": "vows ./test/*.js --spec"
},
"devDependencies": {
"vows": "0.5.x"
},
"licenses": [ {
"type": "MIT",
"url" : "http://github.com/fent/node-youtube-dl/raw/master/LICENSE"
}]
}