package.json 818 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "imurmurhash",
  3. "version": "0.1.4",
  4. "description": "An incremental implementation of MurmurHash3",
  5. "homepage": "https://github.com/jensyt/imurmurhash-js",
  6. "main": "imurmurhash.js",
  7. "files": [
  8. "imurmurhash.js",
  9. "imurmurhash.min.js",
  10. "package.json",
  11. "README.md"
  12. ],
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/jensyt/imurmurhash-js"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/jensyt/imurmurhash-js/issues"
  19. },
  20. "keywords": [
  21. "murmur",
  22. "murmurhash",
  23. "murmurhash3",
  24. "hash",
  25. "incremental"
  26. ],
  27. "author": {
  28. "name": "Jens Taylor",
  29. "email": "jensyt@gmail.com",
  30. "url": "https://github.com/homebrewing"
  31. },
  32. "license": "MIT",
  33. "dependencies": {
  34. },
  35. "devDependencies": {
  36. },
  37. "engines": {
  38. "node": ">=0.8.19"
  39. }
  40. }