Blake2b implemented in WASM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
708 B

{
"name": "blake2b-wasm",
"version": "0.0.0",
"description": "Blake2b implemented in WASM",
"main": "index.js",
"dependencies": {
"brfs": "^1.4.3"
},
"devDependencies": {
"browserify": "^14.4.0"
},
"browserify": {
"transform": [
"brfs"
]
},
"scripts": {
"compile": "wast2wasm blake2b.wat -o blake2b.wasm",
"demo": "browserify example.js > bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/blake2b-wasm.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/blake2b-wasm/issues"
},
"homepage": "https://github.com/mafintosh/blake2b-wasm"
}