package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.2.2",
  19. "bin": {
  20. "crunchy": "./bin/crunchy",
  21. "crunchy.sh": "./bin/crunchy.sh"
  22. },
  23. "dependencies": {
  24. "big-integer": "^1.6.27",
  25. "cheerio": "^0.22.0",
  26. "cloudscraper": "^1.5.0",
  27. "commander": "^2.15.1",
  28. "fs-extra": "^5.0.0",
  29. "mkdirp": "^0.5.0",
  30. "request": "^2.85.0",
  31. "xml2js": "^0.4.5"
  32. },
  33. "devDependencies": {
  34. "@types/cheerio": "^0.22.7",
  35. "@types/mkdirp": "^0.5.2",
  36. "@types/request": "^2.47.0",
  37. "@types/xml2js": "^0.4.2",
  38. "tsconfig-lint": "^0.12.0",
  39. "tslint": "^5.9.1",
  40. "typescript": "^2.8.1"
  41. },
  42. "scripts": {
  43. "prepublishOnly": "npm run build",
  44. "build": "tsc",
  45. "test": "tslint -c ./tslint.json --project ./tsconfig.json ./src/**/*.ts",
  46. "start": "node ./bin/crunchy"
  47. },
  48. "bugs": {
  49. "url": "https://github.com/Godzil/Crunchy/issues"
  50. }
  51. }