package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.7",
  19. "bin": {
  20. "crunchy": "./bin/crunchy",
  21. "crunchy.sh": "./bin/crunchy.sh"
  22. },
  23. "dependencies": {
  24. "big-integer": "^1.6.32",
  25. "bluebird": "^3.5.1",
  26. "cheerio": "^0.22.0",
  27. "cloudscraper": "^1.5.0",
  28. "commander": "^2.16.0",
  29. "fs-extra": "^7.0.0",
  30. "mkdirp": "^0.5.0",
  31. "pjson": "^1.0.9",
  32. "request": "^2.87.0",
  33. "request-promise": "^4.2.2",
  34. "xml2js": "^0.4.5"
  35. },
  36. "devDependencies": {
  37. "@types/bluebird": "^3.5.23",
  38. "@types/cheerio": "^0.22.8",
  39. "@types/fs-extra": "^5.0.4",
  40. "@types/mkdirp": "^0.5.2",
  41. "@types/node": "^10.5.3",
  42. "@types/request": "^2.47.1",
  43. "@types/request-promise": "^4.1.42",
  44. "@types/xml2js": "^0.4.3",
  45. "npm-check": "^5.7.1",
  46. "tsconfig-lint": "^0.12.0",
  47. "tslint": "^5.11.0",
  48. "typescript": "^2.9.2"
  49. },
  50. "scripts": {
  51. "prepublishOnly": "npm run build",
  52. "compile": "tsc",
  53. "build": "tsc",
  54. "test": "tslint --project .",
  55. "start": "node ./bin/crunchy"
  56. },
  57. "bugs": {
  58. "url": "https://github.com/Godzil/Crunchy/issues"
  59. }
  60. }