mirror of
https://github.com/status-im/bip39.git
synced 2025-02-20 00:08:10 +00:00
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "bip39",
|
|
"version": "2.6.0",
|
|
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
|
|
"main": "src/index.js",
|
|
"types": "./types/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"coverage": "nyc --branches 100 --functions 100 --check-coverage npm run unit",
|
|
"format": "npm run prettier -- --write",
|
|
"format:ci": "npm run prettier -- --check",
|
|
"prettier": "prettier 'ts_src/**/*.ts' --ignore-path ./.prettierignore",
|
|
"standard": "standard",
|
|
"test": "npm run standard && npm run unit",
|
|
"unit": "tape test/*.js",
|
|
"update": "node -e \"require('./util/wordlists').update()\""
|
|
},
|
|
"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",
|
|
"files": [
|
|
"src",
|
|
"types"
|
|
],
|
|
"dependencies": {
|
|
"create-hash": "^1.1.0",
|
|
"pbkdf2": "^3.0.9",
|
|
"randombytes": "^2.0.1",
|
|
"unorm": "^1.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/create-hash": "^1.2.0",
|
|
"@types/node": "^11.11.6",
|
|
"@types/pbkdf2": "^3.0.0",
|
|
"@types/randombytes": "^2.0.0",
|
|
"@types/unorm": "^1.3.27",
|
|
"node-fetch": "^1.6.3",
|
|
"nyc": "^13.1.0",
|
|
"prettier": "^1.16.4",
|
|
"proxyquire": "^1.7.10",
|
|
"standard": "^10.0.2",
|
|
"tape": "^4.6.2",
|
|
"typescript": "3.3.4000"
|
|
}
|
|
}
|