blake2s-js
Version:
Pure JavaScript implementation of BLAKE2s cryptographic hash function.
33 lines (32 loc) • 744 B
JSON
{
"name": "blake2s-js",
"version": "1.3.0",
"description": "Pure JavaScript implementation of BLAKE2s cryptographic hash function.",
"main": "blake2s.js",
"types": "blake2s.d.ts",
"scripts": {
"build": "uglifyjs blake2s.js -c -m -o blake2s.min.js",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dchest/blake2s-js"
},
"keywords": [
"blake2",
"blake2s",
"blake",
"hash",
"crypto",
"cryptographic"
],
"author": "Dmitry Chestnykh",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/dchest/blake2s-js/issues"
},
"devDependencies": {
"uglify-js": "^3.2.1"
},
"homepage": "https://github.com/dchest/blake2s-js"
}