package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "get-uri",
  3. "version": "3.0.2",
  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. "scripts": {
  11. "prebuild": "rimraf dist",
  12. "build": "tsc",
  13. "test": "mocha --reporter spec",
  14. "test-lint": "eslint src --ext .js,.ts",
  15. "prepublishOnly": "npm run build"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/TooTallNate/node-get-uri.git"
  20. },
  21. "keywords": [
  22. "uri",
  23. "read",
  24. "readstream",
  25. "stream",
  26. "get",
  27. "http",
  28. "https",
  29. "ftp",
  30. "file",
  31. "data",
  32. "protocol",
  33. "url"
  34. ],
  35. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/TooTallNate/node-get-uri/issues"
  39. },
  40. "devDependencies": {
  41. "@types/debug": "4",
  42. "@types/fs-extra": "^8.0.1",
  43. "@types/ftp": "^0.3.30",
  44. "@types/node": "^12.12.11",
  45. "@typescript-eslint/eslint-plugin": "1.6.0",
  46. "@typescript-eslint/parser": "1.1.0",
  47. "eslint": "5.16.0",
  48. "eslint-config-airbnb": "17.1.0",
  49. "eslint-config-prettier": "4.1.0",
  50. "eslint-import-resolver-typescript": "1.1.1",
  51. "eslint-plugin-import": "2.16.0",
  52. "eslint-plugin-jsx-a11y": "6.2.1",
  53. "eslint-plugin-react": "7.12.4",
  54. "ftpd": "https://files-jg1s1zt9l.n8.io/ftpd-v0.2.14.tgz",
  55. "mocha": "^6.2.2",
  56. "rimraf": "^3.0.0",
  57. "st": "^1.2.2",
  58. "stream-to-array": "2",
  59. "typescript": "^3.7.3"
  60. },
  61. "dependencies": {
  62. "@tootallnate/once": "1",
  63. "data-uri-to-buffer": "3",
  64. "debug": "4",
  65. "file-uri-to-path": "2",
  66. "fs-extra": "^8.1.0",
  67. "ftp": "^0.3.10"
  68. },
  69. "engines": {
  70. "node": ">= 6"
  71. }
  72. }