UNPKG

insanehash

Version:

Use the lastest SHA3 cryptographic hash algorithm from NIST Hash Competition based on Chris Drost implementation

53 lines (52 loc) 1.27 kB
{ "name": "insanehash", "description": "Use the lastest SHA3 cryptographic hash algorithm from NIST Hash Competition based on Chris Drost implementation", "keywords": [ "hash", "cryptography", "NIST", "SHA3" ], "repository": { "type": "git", "url": "git@github.com:thalesfsp/insanehash.git" }, "bugs": { "url": "https://github.com/thalesfsp/insanehash/issues" }, "version": "0.1.4", "homepage": "https://github.com/thalesfsp/insanehash", "author": "thalesfsp <thalesfsp@gmail.com>", "contributors": [ { "name": "thalesfsp", "email": "thalesfsp@gmail.com" } ], "maintainers": [ "thalesfsp <thalesfsp@gmail.com>" ], "directories": {}, "license": "MIT", "engines": { "node": ">= 0.10.3" }, "dependencies": { "commander": "^2.8.1" }, "main": "bin/insanehash.js", "bin": { "insanehash": "./bin/insanehash.js" }, "scripts": { "test": "npm run test:cli && npm run test:package", "test:cli": "./test.sh", "test:package": "npm run build && nyc --clean mocha test.js", "build": "terser --compress --mangle --output bin/insanehash.js lib/insanehash.js" }, "devDependencies": { "mocha": "^6.2.0", "nyc": "^14.1.1", "terser": "^4.3.1" } }