package.json 910 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "author": "Roel van Uden",
  3. "description": "CrunchyRoll.js is capable of downloading anime episodes from the popular CrunchyRoll streaming service.",
  4. "keywords": [
  5. "anime",
  6. "download",
  7. "crunchyroll"
  8. ],
  9. "name": "crunchyroll",
  10. "repository": "git://github.com/Deathspike/crunchyroll.js.git",
  11. "version": "1.1.0",
  12. "bin": {
  13. "crunchyroll": "./bin/crunchyroll"
  14. },
  15. "dependencies": {
  16. "big-integer": "^1.4.3",
  17. "cheerio": "^0.18.0",
  18. "commander": "^2.6.0",
  19. "mkdirp": "^0.5.0",
  20. "request": "^2.53.0",
  21. "xml2js": "^0.4.4"
  22. },
  23. "scripts": {
  24. "prepublish": "npm run tsd && npm run tsc",
  25. "tsc": "./node_modules/.bin/tsc --declaration --module CommonJS --noImplicitAny --outDir dist typings/tsd.d.ts src/cli.ts",
  26. "tsd": "./node_modules/.bin/tsd reinstall --overwrite --save"
  27. },
  28. "devDependencies": {
  29. "tsd": "^0.5.7",
  30. "typescript": "^1.4.1"
  31. }
  32. }