package.json 640 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "is-gzip",
  3. "version": "1.0.0",
  4. "description": "Check if a Buffer/Uint8Array is a GZIP file",
  5. "license": "MIT",
  6. "repository": "kevva/is-gzip",
  7. "author": {
  8. "name": "Kevin Mårtensson",
  9. "email": "kevinmartensson@gmail.com",
  10. "url": "https://github.com/kevva"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "node test/test.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "archive",
  23. "buffer",
  24. "check",
  25. "detect",
  26. "gzip",
  27. "type",
  28. "uint8array"
  29. ],
  30. "devDependencies": {
  31. "ava": "0.0.4",
  32. "mocha": "^1.18.2",
  33. "read-chunk": "^1.0.0"
  34. }
  35. }