forked from multiformats/js-multihashing-async
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.45 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "multihashing-async",
"version": "2.1.2",
"description": "multiple hash functions",
"keywords": [
"multihash",
"hash",
"hashing",
"async"
],
"homepage": "https://github.com/multiformats/js-multihashing-async",
"bugs": "https://github.com/multiformats/js-multihashing-async/issues",
"license": "MIT",
"leadMaintainer": "Hugo Dias <[email protected]>",
"files": [
"src",
"dist"
],
"main": "src/index.js",
"browser": {
"./src/sha.js": "./src/sha.browser.js"
},
"types": "dist/src/index.d.ts",
"repository": "github:multiformats/js-multihashing-async",
"scripts": {
"test": "aegir test",
"test:browser": "aegir test -t browser",
"test:node": "aegir test -t node",
"lint": "aegir lint",
"check": "aegir ts -p check",
"prepare": "aegir build --no-bundle",
"docs": "aegir docs",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"build": "aegir build",
"bench": "node benchmarks/hash.js"
},
"dependencies": {
"blakejs": "^1.1.0",
"err-code": "^3.0.0",
"js-sha3": "^0.8.0",
"multihashes": "^4.0.1",
"murmurhash3js-revisited": "^3.0.0",
"uint8arrays": "^2.1.3"
},
"devDependencies": {
"@types/sinon": "^9.0.10",
"aegir": "^31.0.1",
"benchmark": "^2.1.4",
"sinon": "^9.0.2",
"util": "^0.12.3"
},
"eslintConfig": {
"extends": "ipfs"
},
"aegir": {
"build": {
"bundlesizeMax": "15kB"
}
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"contributors": [
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Hugo Dias <[email protected]>",
"achingbrain <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Richard Littauer <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Volker Mische <[email protected]>",
"André Cruz <[email protected]>",
"Arve Knudsen <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Jacob Heun <[email protected]>",
"Marcin Rataj <[email protected]>",
"Matteo Collina <[email protected]>",
"Mikeal Rogers <[email protected]>",
"Mitar <[email protected]>",
"Richard Schneider <[email protected]>"
]
}