UNPKG

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