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 24
/
package.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 <hugomrdias@gmail.com>",
"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 <hugomrdias@gmail.com>",
"David Dias <daviddias.p@gmail.com>",
"Oli Evans <oli@tableflip.io>",
"achingbrain <alex@achingbrain.net>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"Alan Shaw <alan.shaw@protocol.ai>",
"Irakli Gozalishvili <contact@gozala.io>",
"victorbjelkholm <victorbjelkholm@gmail.com>",
"Bora M. Alper <boramalper@gmail.com>",
"Carson Farmer <carson.farmer@gmail.com>",
"Henrique Dias <hacdias@gmail.com>",
"Kyle Maas <kylemaasdev@gmail.com>",
"Richard Littauer <richard.littauer@gmail.com>",
"Wolfgang Faust <wolfgang42@users.noreply.github.com>",
"theobat <theophile.batoz@gmail.com>"
]
}