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.
 
 

37 lines
880 B

{
"name": "bip39",
"version": "2.2.0",
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
"main": "index.js",
"scripts": {
"coverage": "nyc --branches 100 --functions 100 --check-coverage npm run unit",
"standard": "standard",
"test": "npm run standard && npm run unit",
"unit": "tape test/*.js"
},
"author": "Wei Lu",
"contributors": [
{
"name": "Daniel Cousens",
"email": "email@dcousens.com",
"url": "http://dcousens.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/weilu/bip39.git"
},
"license": "ISC",
"dependencies": {
"create-hash": "^1.1.0",
"pbkdf2": "^3.0.9",
"randombytes": "^2.0.1",
"unorm": "^1.3.3"
},
"devDependencies": {
"nyc": "^8.3.0",
"proxyquire": "^1.7.10",
"standard": "*",
"tape": "^4.6.2"
}
}