package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.1.20",
  19. "bin": {
  20. "crunchy": "./bin/crunchy"
  21. },
  22. "dependencies": {
  23. "big-integer": "^1.4.4",
  24. "cheerio": "^0.22.0",
  25. "cloudscraper": "^1.4.1",
  26. "commander": "^2.6.0",
  27. "fs-extra": "^2.0.0",
  28. "mkdirp": "^0.5.0",
  29. "request": "^2.74.0",
  30. "xml2js": "^0.4.5"
  31. },
  32. "devDependencies": {
  33. "tsconfig-lint": "^0.12.0",
  34. "tslint": "^4.4.2",
  35. "typescript": "^2.2.0",
  36. "typings": "^2.1.0"
  37. },
  38. "scripts": {
  39. "prepublish": "npm run types && tsc",
  40. "compile": "tsc",
  41. "test": "tslint -c ./tslint.json --project ./tsconfig.json ./src/**/*.ts",
  42. "types": "typings install",
  43. "start": "node ./bin/crunchy"
  44. },
  45. "bugs": {
  46. "url": "https://github.com/Godzil/Crunchy/issues"
  47. }
  48. }