UNPKG

1.67 kBJSONView Raw
1{
2 "name": "ytdl-core",
3 "description": "Youtube video downloader in pure javascript.",
4 "keywords": [
5 "youtube",
6 "video",
7 "download"
8 ],
9 "version": "3.2.1",
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/fent/node-ytdl-core.git"
13 },
14 "author": "fent <fentbox@gmail.com> (https://github.com/fent)",
15 "contributors": [
16 "Tobias Kutscha (https://github.com/TimeForANinja)",
17 "Andrew Kelley (https://github.com/andrewrk)",
18 "Mauricio Allende (https://github.com/mallendeo)",
19 "Rodrigo Altamirano (https://github.com/raltamirano)",
20 "Jim Buck (https://github.com/JimmyBoh)"
21 ],
22 "main": "./lib/index.js",
23 "types": "./typings/index.d.ts",
24 "files": [
25 "lib",
26 "typings"
27 ],
28 "scripts": {
29 "test": "nyc --reporter=lcov --reporter=text-summary npm run test:unit",
30 "test:unit": "mocha --ignore test/irl-test.js test/*-test.js --timeout 4000",
31 "test:irl": "mocha --timeout 16000 test/irl-test.js",
32 "lint": "eslint ./",
33 "lint:fix": "eslint --fix ./",
34 "lint:typings": "tslint typings/index.d.ts",
35 "lint:typings:fix": "tslint --fix typings/index.d.ts"
36 },
37 "dependencies": {
38 "html-entities": "^1.3.1",
39 "m3u8stream": "^0.7.1",
40 "miniget": "^2.0.1",
41 "sax": "^1.1.3"
42 },
43 "devDependencies": {
44 "@types/node": "^13.1.0",
45 "assert-diff": "^3.0.1",
46 "dtslint": "^3.6.14",
47 "eslint": "^6.8.0",
48 "mocha": "^7.0.0",
49 "muk-prop": "^2.0.0",
50 "muk-require": "^1.2.0",
51 "nock": "^12.0.0",
52 "nyc": "^15.0.0",
53 "sinon": "^9.0.0",
54 "stream-equal": "~1.1.0",
55 "typescript": "^3.9.7"
56 },
57 "engines": {
58 "node": ">=10"
59 },
60 "license": "MIT"
61}