-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
49 lines (49 loc) · 956 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "youtube-playlist",
"version": "1.0.4",
"description": "Extract links, ids, and names from a youtube playlist",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CodeDotJS/youtube-playlist.git"
},
"author": "Rishi Giri <[email protected]> (rishigiri.ml)",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"extract",
"fetch",
"youtube",
"playlist",
"url",
"id",
"name",
"content",
"scrap",
"api",
"fast"
],
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"got": "^6.3.0"
},
"devDependencies": {
"ava": "^0.15.0",
"xo": "^0.16.0"
},
"xo": {
"esnext": true
},
"bugs": {
"url": "https://github.com/CodeDotJS/youtube-playlist/issues"
},
"homepage": "https://github.com/CodeDotJS/youtube-playlist#readme",
"main": "index.js"
}