package.json 746 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "archive-type",
  3. "version": "4.0.0",
  4. "description": "Detect the archive type of a Buffer/Uint8Array",
  5. "license": "MIT",
  6. "repository": "kevva/archive-type",
  7. "author": {
  8. "name": "Kevin Mårtensson",
  9. "email": "kevinmartensson@gmail.com",
  10. "url": "https://github.com/kevva"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "7zip",
  23. "archive",
  24. "buffer",
  25. "bz2",
  26. "bzip2",
  27. "check",
  28. "detect",
  29. "gz",
  30. "gzip",
  31. "mime",
  32. "rar",
  33. "zip",
  34. "file",
  35. "type"
  36. ],
  37. "dependencies": {
  38. "file-type": "^4.2.0"
  39. },
  40. "devDependencies": {
  41. "ava": "*",
  42. "pify": "^2.3.0",
  43. "xo": "*"
  44. }
  45. }