package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. {
  2. "name": "file-type",
  3. "version": "9.0.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": ">=6"
  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. "detect",
  34. "check",
  35. "is",
  36. "exif",
  37. "exe",
  38. "binary",
  39. "buffer",
  40. "uint8array",
  41. "jpg",
  42. "png",
  43. "gif",
  44. "webp",
  45. "flif",
  46. "cr2",
  47. "tif",
  48. "bmp",
  49. "jxr",
  50. "psd",
  51. "zip",
  52. "tar",
  53. "rar",
  54. "gz",
  55. "bz2",
  56. "7z",
  57. "dmg",
  58. "mp4",
  59. "m4v",
  60. "mid",
  61. "mkv",
  62. "webm",
  63. "mov",
  64. "avi",
  65. "mpg",
  66. "mp2",
  67. "mp3",
  68. "m4a",
  69. "ogg",
  70. "opus",
  71. "flac",
  72. "wav",
  73. "amr",
  74. "pdf",
  75. "epub",
  76. "mobi",
  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. "docx",
  104. "pptx",
  105. "xlsx",
  106. "3gp",
  107. "jp2",
  108. "jpm",
  109. "jpx",
  110. "mj2",
  111. "aif",
  112. "odt",
  113. "ods",
  114. "odp",
  115. "xml",
  116. "heic"
  117. ],
  118. "devDependencies": {
  119. "ava": "*",
  120. "read-chunk": "^2.0.0",
  121. "xo": "*"
  122. }
  123. }