UNPKG

bip38

Version:

BIP38 is a standard process to encrypt Bitcoin and crypto currency private keys that is impervious to brute force attacks thus protecting the user.

46 lines (45 loc) 1.33 kB
{ "name": "bip38", "version": "3.1.1", "description": "BIP38 is a standard process to encrypt Bitcoin and crypto currency private keys that is impervious to brute force attacks thus protecting the user.", "main": "index.js", "keywords": [ "bitcoin", "crypto", "cryptography", "litecoin" ], "homepage": "http://cryptocoinjs.com/modules/currency/bip38/", "author": "JP Richardson", "dependencies": { "bigi": "^1.2.0", "browserify-aes": "^1.0.1", "bs58check": "<3.0.0", "buffer-xor": "^1.0.2", "create-hash": "^1.1.1", "ecurve": "^1.0.0", "safe-buffer": "~5.1.1", "scryptsy": "^2.1.0" }, "devDependencies": { "coveralls": "^3.0.4", "mocha": "^6.1.4", "mochify": "^6.2.0", "nyc": "^14.1.1", "standard": "^12.0.1", "wif": "^2.0.1" }, "repository": { "url": "git@github.com:bitcoinjs/bip38.git", "type": "git" }, "scripts": { "browser-test": "mochify --wd -R spec --timeout 100000", "ci:test": "npm run standard && npm run coveralls", "coverage": "nyc --check-coverage --reporter=lcov --reporter=text mocha", "coveralls": "npm run-script coverage && coveralls < coverage/lcov.info", "standard": "standard", "test": "npm run standard && npm run unit", "unit": "mocha --ui bdd --timeout 240000" } }