package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "name": "file-type",
  3. "version": "5.2.0",
  4. "description": "Detect the file type of a Buffer/Uint8Array",
  5. "license": "MIT",
  6. "repository": "sindresorhus/file-type",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "mime",
  23. "file",
  24. "type",
  25. "archive",
  26. "image",
  27. "img",
  28. "pic",
  29. "picture",
  30. "flash",
  31. "photo",
  32. "video",
  33. "type",
  34. "detect",
  35. "check",
  36. "is",
  37. "exif",
  38. "exe",
  39. "binary",
  40. "buffer",
  41. "uint8array",
  42. "jpg",
  43. "png",
  44. "gif",
  45. "webp",
  46. "flif",
  47. "cr2",
  48. "tif",
  49. "bmp",
  50. "jxr",
  51. "psd",
  52. "zip",
  53. "tar",
  54. "rar",
  55. "gz",
  56. "bz2",
  57. "7z",
  58. "dmg",
  59. "mp4",
  60. "m4v",
  61. "mid",
  62. "mkv",
  63. "webm",
  64. "mov",
  65. "avi",
  66. "mpg",
  67. "mp3",
  68. "m4a",
  69. "ogg",
  70. "opus",
  71. "flac",
  72. "wav",
  73. "amr",
  74. "pdf",
  75. "epub",
  76. "exe",
  77. "swf",
  78. "rtf",
  79. "woff",
  80. "woff2",
  81. "eot",
  82. "ttf",
  83. "otf",
  84. "ico",
  85. "flv",
  86. "ps",
  87. "xz",
  88. "sqlite",
  89. "xpi",
  90. "cab",
  91. "deb",
  92. "ar",
  93. "rpm",
  94. "Z",
  95. "lz",
  96. "msi",
  97. "mxf",
  98. "mts",
  99. "wasm",
  100. "webassembly",
  101. "blend",
  102. "bpg"
  103. ],
  104. "devDependencies": {
  105. "ava": "*",
  106. "read-chunk": "^2.0.0",
  107. "xo": "*"
  108. }
  109. }