package.json 610 B

123456789101112131415161718192021222324
  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 pron",
  12. "help": "node index.js -h",
  13. "version": "node index.js -v"
  14. },
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "chokidar": "^3.2.2",
  19. "handbrake-js": "^4.0.1",
  20. "lowdb": "^1.0.0",
  21. "minimist": "^1.2.0",
  22. "npm-run-all": "^4.1.5"
  23. }
  24. }