package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.21",
  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.12.2",
  27. "fs-extra": "^5.0.0",
  28. "mkdirp": "^0.5.0",
  29. "request": "^2.74.0",
  30. "xml2js": "^0.4.5"
  31. },
  32. "devDependencies": {
  33. "@types/cheerio": "^0.22.6",
  34. "@types/mkdirp": "^0.5.2",
  35. "@types/request": "^2.0.9",
  36. "@types/xml2js": "^0.4.2",
  37. "tsconfig-lint": "^0.12.0",
  38. "tslint": "^5.8.0",
  39. "typescript": "^2.6.2"
  40. },
  41. "scripts": {
  42. "prepublishOnly": "npm run build",
  43. "build": "tsc",
  44. "test": "tslint -c ./tslint.json --project ./tsconfig.json ./src/**/*.ts",
  45. "start": "node ./bin/crunchy"
  46. },
  47. "bugs": {
  48. "url": "https://github.com/Godzil/Crunchy/issues"
  49. }
  50. }