mirror of https://github.com/lukechilds/vainjs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
987 B
42 lines
987 B
{
|
|
"name": "vainjs",
|
|
"version": "0.0.0",
|
|
"description": "A JavaScript vanity address generator",
|
|
"main": "src/index.js",
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"scripts": {
|
|
"bench": "node bench/index.js",
|
|
"test": "xo && nyc ava",
|
|
"coverage": "nyc report --reporter=text-lcov | coveralls"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lukechilds/vainjs.git"
|
|
},
|
|
"keywords": [
|
|
"vanity",
|
|
"address",
|
|
"bitcoin",
|
|
"cryptocurrency"
|
|
],
|
|
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/lukechilds/vainjs/issues"
|
|
},
|
|
"homepage": "https://github.com/lukechilds/vainjs#readme",
|
|
"devDependencies": {
|
|
"ava": "^1.4.1",
|
|
"coveralls": "^3.0.3",
|
|
"nyc": "^14.1.0",
|
|
"pretty-ms": "^5.0.0",
|
|
"xo": "^0.24.0"
|
|
},
|
|
"dependencies": {
|
|
"bip39": "^3.0.2",
|
|
"bitcoinjs-lib": "^5.0.3",
|
|
"tiny-emitter": "^2.1.0"
|
|
}
|
|
}
|
|
|