forked from emilbayes/blake2b
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
30 lines (30 loc) · 814 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "blake2b",
"version": "2.1.3",
"description": "Blake2b (64-bit version) in pure Javascript",
"main": "index.js",
"dependencies": {
"blake2b-wasm": "https://github.com/BitGo/blake2b-wasm#193cdb71656c1a6c7f89b05d0327bb9b758d071b",
"nanoassert": "^1.0.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"coverify": "^1.4.1",
"tape": "^4.6.3"
},
"scripts": {
"test": "tape test.js",
"cov": "browserify -t coverify test.js | node | coverify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilbayes/blake2b.git"
},
"keywords": [],
"author": "Emil Bay <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilbayes/blake2b/issues"
},
"homepage": "https://github.com/emilbayes/blake2b#readme"
}