UNPKG

@lumeweb/js-sha3-browser

Version:

A simple SHA-3 / Keccak / Shake hash function for JavaScript supports UTF-8 encoding.

46 lines (45 loc) 1.14 kB
{ "name": "@lumeweb/js-sha3-browser", "version": "0.8.1", "description": "A simple SHA-3 / Keccak / Shake hash function for JavaScript supports UTF-8 encoding.", "main": "src/sha3.js", "devDependencies": { "expect.js": "~0.3.1", "mocha": "~2.3.4", "nyc": "^11.3.0", "uglify-js": "^3.1.9", "webworker-threads": "^0.7.13" }, "scripts": { "test": "nyc mocha tests/node-test.js", "report": "nyc --reporter=html --reporter=text mocha tests/node-test.js", "coveralls": "nyc report --reporter=text-lcov | coveralls", "build": "uglifyjs src/sha3.js -c -m --comments --output build/sha3.min.js" }, "repository": { "type": "git", "url": "https://github.com/LumeWeb/js-sha3-browser.git" }, "keywords": [ "sha3", "keccak", "shake", "cshake", "kmac", "hash", "encryption", "cryptography", "HMAC" ], "license": "MIT", "author": "Chen, Yi-Cyuan <emn178@gmail.com>", "homepage": "https://github.com/emn178/js-sha3", "bugs": { "url": "https://github.com/LumeWeb/js-sha3-browser/issues" }, "nyc": { "exclude": [ "tests" ] } }