bower.json 478 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "xxhash",
  3. "version": "0.2.1",
  4. "homepage": "https://github.com/pierrec/js-xxhash",
  5. "authors": [
  6. "Pierre Curto <pierre.curto@gmail.com>"
  7. ],
  8. "description": "xxHash - fast 32 and 64 bits hashing algorithm",
  9. "main": "build/xxhash.js",
  10. "moduleType": [
  11. "amd"
  12. , "globals"
  13. , "node"
  14. ],
  15. "keywords": [
  16. "hash"
  17. , "xxhash"
  18. ],
  19. "license": "MIT",
  20. "ignore": [
  21. "**/.*"
  22. , "node_modules"
  23. , "bower_components"
  24. , "test"
  25. , "tests"
  26. ]
  27. }