
Implemented control on video title in the eventuality it is null or only special characters Implemented suggestion of issue #11 about sanitizing the title
31 lines
897 B
JSON
31 lines
897 B
JSON
{
|
|
"name": "destreamer",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/snobu/destreamer.git"
|
|
},
|
|
"version": "1.0.0",
|
|
"description": "Save Microsoft Stream videos for offline enjoyment.",
|
|
"main": "destreamer.js",
|
|
"scripts": {
|
|
"build": "echo Transpiling TypeScript to JavaScript... & node node_modules/typescript/bin/tsc --listEmittedFiles",
|
|
"run": "node ./destreamer.js",
|
|
"start": "npm run -s build & npm run -s run",
|
|
"test": "node ./destreamer.js test --videoUrls null --username null"
|
|
},
|
|
"keywords": [],
|
|
"author": "snobu",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/puppeteer": "^1.20.0",
|
|
"@types/terminal-kit": "^1.28.1",
|
|
"@types/yargs": "^15.0.3"
|
|
},
|
|
"dependencies": {
|
|
"puppeteer": "^2.1.1",
|
|
"sanitize-filename": "^1.6.3",
|
|
"terminal-kit": "^1.35.2",
|
|
"typescript": "^3.8.3",
|
|
"yargs": "^15.0.3"
|
|
}
|
|
}
|