package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "get-uri",
  3. "version": "6.0.3",
  4. "description": "Returns a `stream.Readable` from a URI string",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "files": [
  8. "dist"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/TooTallNate/proxy-agents.git",
  13. "directory": "packages/get-uri"
  14. },
  15. "keywords": [
  16. "uri",
  17. "read",
  18. "readstream",
  19. "stream",
  20. "get",
  21. "http",
  22. "https",
  23. "ftp",
  24. "file",
  25. "data",
  26. "protocol",
  27. "url"
  28. ],
  29. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  30. "license": "MIT",
  31. "devDependencies": {
  32. "@types/debug": "^4.1.7",
  33. "@types/fs-extra": "^8.1.2",
  34. "@types/ftpd": "^0.2.35",
  35. "@types/jest": "^29.5.1",
  36. "@types/node": "^14.18.45",
  37. "async-listen": "^3.0.0",
  38. "ftpd": "https://files-jg1s1zt9l.n8.io/ftpd-v0.2.14.tgz",
  39. "jest": "^29.5.0",
  40. "st": "^1.2.2",
  41. "ts-jest": "^29.1.0",
  42. "typescript": "^5.0.4",
  43. "tsconfig": "0.0.0"
  44. },
  45. "dependencies": {
  46. "basic-ftp": "^5.0.2",
  47. "data-uri-to-buffer": "^6.0.2",
  48. "debug": "^4.3.4",
  49. "fs-extra": "^11.2.0"
  50. },
  51. "engines": {
  52. "node": ">= 14"
  53. },
  54. "scripts": {
  55. "build": "tsc",
  56. "test": "jest --env node --verbose --bail",
  57. "lint": "eslint . --ext .ts",
  58. "pack": "node ../../scripts/pack.mjs"
  59. }
  60. }