package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "author": "Godzil",
  3. "description": "Crunchy is a fork of Crunchyroll.js, capable of downloading anime episodes from the popular CrunchyRoll streaming service.",
  4. "license": "MIT",
  5. "keywords": [
  6. "anime",
  7. "download",
  8. "crunchyroll"
  9. ],
  10. "name": "crunchy",
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/Godzil/crunchyroll.js.git"
  14. },
  15. "engines": {
  16. "node": ">=5.0"
  17. },
  18. "version": "1.3.0",
  19. "bin": {
  20. "crunchy": "./bin/crunchy",
  21. "crunchy.sh": "./bin/crunchy.sh"
  22. },
  23. "dependencies": {
  24. "big-integer": "^1.6.30",
  25. "bluebird": "^3.5.1",
  26. "cheerio": "^0.22.0",
  27. "cloudscraper": "^1.5.0",
  28. "commander": "^2.15.1",
  29. "fs-extra": "^6.0.1",
  30. "mkdirp": "^0.5.0",
  31. "request": "^2.87.0",
  32. "request-promise": "^4.2.2",
  33. "xml2js": "^0.4.5"
  34. },
  35. "devDependencies": {
  36. "@types/bluebird": "^3.5.20",
  37. "@types/cheerio": "^0.22.7",
  38. "@types/fs-extra": "^5.0.2",
  39. "@types/mkdirp": "^0.5.2",
  40. "@types/request": "^2.47.0",
  41. "@types/request-promise": "^4.1.41",
  42. "@types/xml2js": "^0.4.2",
  43. "tsconfig-lint": "^0.12.0",
  44. "tslint": "^5.10.0",
  45. "typescript": "^2.9.1"
  46. },
  47. "scripts": {
  48. "prepublishOnly": "npm run build",
  49. "compile": "tsc",
  50. "build": "tsc",
  51. "test": "tslint --project .",
  52. "start": "node ./bin/crunchy"
  53. },
  54. "bugs": {
  55. "url": "https://github.com/Godzil/Crunchy/issues"
  56. }
  57. }