forked from fent/node-ytdl-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
48
49
50
51
{
"name": "ytdl-core",
"description": "Youtube video downloader in pure javascript.",
"keywords": [
"youtube",
"video",
"download"
],
"version": "0.21.1",
"repository": {
"type": "git",
"url": "git://github.com/fent/node-ytdl-core.git"
},
"author": "fent (https://github.com/fent)",
"contributors": [
"Tobias Kutscha (https://github.com/TimeForANinja)",
"Andrew Kelley (https://github.com/andrewrk)",
"Mauricio Allende (https://github.com/mallendeo)",
"Rodrigo Altamirano (https://github.com/raltamirano)",
"Jim Buck (https://github.com/JimmyBoh)"
],
"main": "./lib/index.js",
"types": "./typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha -- -t 16000 test/*-test.js"
},
"dependencies": {
"html-entities": "^1.1.3",
"m3u8stream": "^0.3.0",
"miniget": "^1.1.0",
"sax": "^1.1.3"
},
"devDependencies": {
"@types/node": "^10.0.3",
"assert-diff": "^1.2.4",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"muk-prop": "^2.0.0",
"nock": "^9.1.5",
"sinon": "^6.0.0",
"stream-equal": "~1.1.0"
},
"engines": {
"node": ">=4"
},
"license": "MIT"
}