UNPKG

849 BJSONView Raw
1{
2 "name": "blake2b-wasm",
3 "version": "1.1.2",
4 "description": "Blake2b implemented in WASM",
5 "main": "index.js",
6 "dependencies": {
7 "base64-to-uint8array": "^1.0.0",
8 "brfs": "^1.4.3",
9 "nanoassert": "^1.0.0"
10 },
11 "devDependencies": {
12 "blake2b": "^1.2.0",
13 "browserify": "^14.4.0",
14 "tape": "^4.6.3"
15 },
16 "browserify": {
17 "transform": [
18 "brfs"
19 ]
20 },
21 "scripts": {
22 "compile": "wast2wasm blake2b.wat -o blake2b.wasm",
23 "demo": "browserify example.js > bundle.js",
24 "test": "tape test.js"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/mafintosh/blake2b-wasm.git"
29 },
30 "author": "Mathias Buus (@mafintosh)",
31 "license": "MIT",
32 "bugs": {
33 "url": "https://github.com/mafintosh/blake2b-wasm/issues"
34 },
35 "homepage": "https://github.com/mafintosh/blake2b-wasm"
36}