This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathpackage.json
81 lines (81 loc) · 2.33 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
{
"name": "multihashes",
"version": "4.0.3",
"description": "multihash implementation",
"keywords": [
"multihash",
"multiformats",
"ipfs",
"hash"
],
"homepage": "https://github.com/multiformats/js-multihash",
"bugs": "https://github.com/multiformats/js-multihash/issues",
"license": "MIT",
"leadMaintainer": "Hugo Dias <[email protected]>",
"files": [
"src",
"dist"
],
"scripts": {
"prepare": "aegir build --no-bundle",
"lint": "aegir lint",
"test:browser": "aegir test --target browser",
"test:node": "aegir test --target node",
"test": "aegir test",
"docs": "aegir docs",
"release": "aegir release --docs",
"release-minor": "aegir release --type minor --docs",
"release-major": "aegir release --type major --docs",
"update-constants": "node update-constants.js"
},
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"repository": "github:multiformats/js-multihash",
"dependencies": {
"multibase": "^4.0.1",
"uint8arrays": "^3.0.0",
"varint": "^5.0.2"
},
"devDependencies": {
"aegir": "^35.0.1",
"ipfs-utils": "^8.1.4",
"util": "^0.12.4"
},
"eslintConfig": {
"extends": "ipfs"
},
"aegir": {
"build": {
"bundlesizeMax": "10.3kB"
}
},
"contributors": [
"David Dias <[email protected]>",
"Hugo Dias <[email protected]>",
"Juan Benet <[email protected]>",
"Jacob Heun <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Richard Littauer <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Rod Vagg <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Alex Potsides <[email protected]>",
"kumavis <[email protected]>",
"Linus Unnebäck <[email protected]>",
"Vasco Santos <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"Trond Arne Bråthen <[email protected]>",
"Volker Mische <[email protected]>",
"William Cotton <[email protected]>",
"nginnever <[email protected]>",
"Fil <[email protected]>",
"Lars Gierth <[email protected]>",
"Nate Foss <[email protected]>",
"Alan Shaw <[email protected]>",
"Donald Tsang <[email protected]>"
],
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
}
}