forked from mtl1979/node-base58
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 983 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 983 Bytes
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
{
"name": "@mtl1979/base58-native",
"description": "An Implementation of Base58 and Base58Check encoding using algorithm adapted from digit-array.",
"version": "0.1.5",
"author": {
"name": "Satoshi Nakamoto",
"email": "satoshin@gmx.com"
},
"contributors": [
{"name": "Stefan Thomas", "email": "moon@justmoon.net"},
{"name": "Andrew Schaaf", "email": "andrew@andrewschaaf.com"},
{"name": "Jeff Garzik", "email": "jgarzik@bitpay.com"},
{"name": "Stephen Pair", "email": "stephen@bitpay.com"},
{"name": "Jared Deckard", "email": "jared.deckard@gmail.com"}
],
"main": "./base58",
"keywords": [
"base58",
"base58check",
"base64",
"encoding"
],
"repository": {
"type": "git",
"url": "http://github.com/mtl1979/node-base58.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": ">1.0.0"
},
"license": "MIT"
}