package.json 1.4 KB

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