60 lines
1.6 KiB
JSON
60 lines
1.6 KiB
JSON
{
|
|
"name": "ytdl-core",
|
|
"description": "YouTube video downloader in pure javascript.",
|
|
"keywords": [
|
|
"youtube",
|
|
"video",
|
|
"download"
|
|
],
|
|
"version": "4.9.1",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/fent/node-ytdl-core.git"
|
|
},
|
|
"author": "fent <fentbox@gmail.com> (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": "nyc --reporter=lcov --reporter=text-summary npm run test:unit",
|
|
"test:unit": "mocha --ignore test/irl-test.js test/*-test.js --timeout 4000",
|
|
"test:irl": "mocha --timeout 16000 test/irl-test.js",
|
|
"lint": "eslint ./",
|
|
"lint:fix": "eslint --fix ./",
|
|
"lint:typings": "tslint typings/index.d.ts",
|
|
"lint:typings:fix": "tslint --fix typings/index.d.ts"
|
|
},
|
|
"dependencies": {
|
|
"m3u8stream": "^0.8.3",
|
|
"miniget": "^4.0.0",
|
|
"sax": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^13.1.0",
|
|
"assert-diff": "^3.0.1",
|
|
"dtslint": "^3.6.14",
|
|
"eslint": "^6.8.0",
|
|
"mocha": "^7.0.0",
|
|
"muk-require": "^1.2.0",
|
|
"nock": "^13.0.4",
|
|
"nyc": "^15.0.0",
|
|
"sinon": "^9.0.0",
|
|
"stream-equal": "~1.1.0",
|
|
"typescript": "^3.9.7"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"license": "MIT"
|
|
}
|