This repository has been archived by the owner on Jun 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "ethereum-private-key-to-address",
"version": "0.0.7",
"description": "Convert an Ethereum private key to a public address",
"main": "index.js",
"bin": {
"ethereum_private_key_to_address": "bin/ethereum_private_key_to_address",
"ethereum-private-key-to-address": "bin/ethereum_private_key_to_address"
},
"scripts": {
"test": "tape test/*.js",
"lint": "standard --fix index.js test/test.js example/example.js",
"build:example": "browserify example/main.js -o example/dist/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/ethereum-private-key-to-address"
},
"bugs": {
"url": "https://github.com/miguelmota/ethereum-private-key-to-address/issues"
},
"homepage": "https://github.com/miguelmota/ethereum-private-key-to-address",
"author": {
"name": "Miguel Mota",
"email": "[email protected]",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/ethereum-private-key-to-address/blob/master/LICENSE"
},
"dependencies": {
"ethereum-private-key-to-public-key": "0.0.2",
"ethereum-public-key-to-address": "0.0.1",
"meow": "^5.0.0"
},
"keywords": [
"ethereum",
"eth",
"blockchain",
"private",
"key",
"public",
"address",
"converter",
"checksum",
"cli"
],
"devDependencies": {
"browserify": "^16.5.1",
"standard": "^12.0.1",
"tape": "^4.10.2"
}
}