package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.5.0",
  19. "bin": {
  20. "crunchy": "./bin/crunchy",
  21. "crunchy.sh": "./bin/crunchy.sh"
  22. },
  23. "dependencies": {
  24. "big-integer": "^1.6.44",
  25. "bluebird": "^3.5.5",
  26. "brotli": "^1.3.2",
  27. "cheerio": "^0.22.0",
  28. "cloudscraper": "^4.1.2",
  29. "commander": "^2.20.0",
  30. "fs-extra": "^8.1.0",
  31. "mkdirp": "^0.5.0",
  32. "pjson": "^1.0.9",
  33. "request": "^2.88.0",
  34. "request-promise": "^4.2.4",
  35. "tough-cookie-file-store": "^1.2.0",
  36. "uuid": "^3.3.2",
  37. "xml2js": "^0.4.5"
  38. },
  39. "devDependencies": {
  40. "@types/bluebird": "^3.5.27",
  41. "@types/cheerio": "^0.22.12",
  42. "@types/fs-extra": "^8.0.0",
  43. "@types/mkdirp": "^0.5.2",
  44. "@types/node": "^12.6.8",
  45. "@types/request": "^2.48.2",
  46. "@types/request-promise": "^4.1.44",
  47. "@types/uuid": "^3.4.5",
  48. "@types/xml2js": "^0.4.4",
  49. "npm-check": "^5.9.0",
  50. "tsconfig-lint": "^0.12.0",
  51. "tslint": "^5.18.0",
  52. "typescript": "^3.5.3"
  53. },
  54. "scripts": {
  55. "prepublishOnly": "npm run build",
  56. "compile": "tsc",
  57. "build": "tsc",
  58. "test": "tslint --project .",
  59. "start": "node ./bin/crunchy"
  60. },
  61. "bugs": {
  62. "url": "https://github.com/Godzil/Crunchy/issues"
  63. }
  64. }