This repository was archived by the owner on Aug 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
{
"name": "multibase",
"version": "4.0.6",
"description": "JavaScript implementation of the multibase specification",
"keywords": [
"IPFS",
"multiformats",
"multibase",
"encode",
"decode",
"formats"
],
"homepage": "https://github.com/multiformats/js-multibase#readme",
"bugs": "https://github.com/multiformats/js-multibase/issues",
"license": "MIT",
"leadMaintainer": "Hugo Dias <[email protected]>",
"files": [
"src",
"dist"
],
"main": "src/index.js",
"repository": "github:multiformats/js-multibase",
"scripts": {
"prepare": "aegir build --no-bundle",
"lint": "aegir lint",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major"
},
"dependencies": {
"@multiformats/base-x": "^4.0.1"
},
"devDependencies": {
"aegir": "^35.0.2",
"benchmark": "^2.1.4",
"util": "^0.12.4"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"eslintConfig": {
"extends": "ipfs"
},
"types": "dist/src/index.d.ts",
"contributors": [
"Hugo Dias <[email protected]>",
"David Dias <[email protected]>",
"Oli Evans <[email protected]>",
"achingbrain <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Volker Mische <[email protected]>",
"Alan Shaw <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"victorbjelkholm <[email protected]>",
"Bora M. Alper <[email protected]>",
"Carson Farmer <[email protected]>",
"Henrique Dias <[email protected]>",
"Kyle Maas <[email protected]>",
"Richard Littauer <[email protected]>",
"Wolfgang Faust <[email protected]>",
"theobat <[email protected]>"
]
}