package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "js-sha3",
  3. "version": "0.8.0",
  4. "description": "A simple SHA-3 / Keccak / Shake hash function for JavaScript supports UTF-8 encoding.",
  5. "main": "src/sha3.js",
  6. "devDependencies": {
  7. "expect.js": "~0.3.1",
  8. "mocha": "~2.3.4",
  9. "nyc": "^11.3.0",
  10. "uglify-js": "^3.1.9",
  11. "webworker-threads": "^0.7.13"
  12. },
  13. "scripts": {
  14. "test": "nyc mocha tests/node-test.js",
  15. "report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
  16. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  17. "build": "uglifyjs src/sha3.js -c -m --comments --output build/sha3.min.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/emn178/js-sha3.git"
  22. },
  23. "keywords": [
  24. "sha3",
  25. "keccak",
  26. "shake",
  27. "cshake",
  28. "kmac",
  29. "hash",
  30. "encryption",
  31. "cryptography",
  32. "HMAC"
  33. ],
  34. "license": "MIT",
  35. "author": "Chen, Yi-Cyuan <emn178@gmail.com>",
  36. "homepage": "https://github.com/emn178/js-sha3",
  37. "bugs": {
  38. "url": "https://github.com/emn178/js-sha3/issues"
  39. },
  40. "nyc": {
  41. "exclude": [
  42. "tests"
  43. ]
  44. }
  45. }