package.json 641 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "watch-finished",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "node index.js -h",
  8. "movies": "node index.js -c ./config/movies.json",
  9. "tvshows": "node index.js -c ./config/tvshows.json",
  10. "pr0n": "node index.js -c ./config/pr0n.json",
  11. "all": "npm-run-all movies pr0n",
  12. "help": "node index.js -h",
  13. "version": "node index.js -v"
  14. },
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "better-queue": "^3.8.10",
  19. "chokidar": "^3.2.2",
  20. "handbrake-js": "^4.0.1",
  21. "lowdb": "^1.0.0",
  22. "minimist": "^1.2.0",
  23. "npm-run-all": "^4.1.5"
  24. }
  25. }