package.json 1.1 KB

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