package.json 847 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "author": "Roel van Uden",
  3. "description": "CrunchyRoll.js is capable of downloading anime episodes from the popular CrunchyRoll streaming service.",
  4. "keywords": [
  5. "anime",
  6. "download",
  7. "crunchyroll"
  8. ],
  9. "name": "crunchyroll",
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/Deathspike/crunchyroll.js.git"
  13. },
  14. "version": "1.1.3",
  15. "bin": {
  16. "crunchyroll": "./bin/crunchyroll"
  17. },
  18. "dependencies": {
  19. "big-integer": "^1.4.4",
  20. "cheerio": "^0.18.0",
  21. "commander": "^2.6.0",
  22. "mkdirp": "^0.5.0",
  23. "request": "^2.53.0",
  24. "xml2js": "^0.4.5"
  25. },
  26. "devDependencies": {
  27. "tsd": "^0.5.7",
  28. "tslint": "^2.1.1",
  29. "typescript": "^1.4.1"
  30. },
  31. "scripts": {
  32. "prepublish": "npm run tsd && node ts",
  33. "test": "node ts --only-test",
  34. "tsd": "tsd reinstall --overwrite"
  35. }
  36. }