ethereum-private-key-to-public-key
Version:
Convert an Ethereum private key to a public key
53 lines (52 loc) • 1.43 kB
JSON
{
"name": "ethereum-private-key-to-public-key",
"version": "0.0.5",
"description": "Convert an Ethereum private key to a public key",
"main": "index.js",
"bin": {
"ethereum_private_key_to_public_key": "bin/ethereum_private_key_to_public_key",
"ethereum-private-key-to-public-key": "bin/ethereum_private_key_to_public_key"
},
"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-public-key"
},
"bugs": {
"url": "https://github.com/miguelmota/ethereum-private-key-to-public-key/issues"
},
"homepage": "https://github.com/miguelmota/ethereum-private-key-to-public-key",
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/ethereum-private-key-to-public-key/blob/master/LICENSE"
},
"dependencies": {
"meow": "^5.0.0",
"secp256k1": "^4.0.2"
},
"keywords": [
"ethereum",
"eth",
"blockchain",
"private",
"key",
"public",
"address",
"converter",
"cli"
],
"devDependencies": {
"browserify": "^16.5.1",
"standard": "^12.0.1",
"tape": "^4.10.2"
}
}