bip39/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2014-03-10 10:49:53 +08:00
{
"name": "bip39",
2019-05-08 06:47:48 +09:00
"version": "3.0.2",
2014-03-10 10:49:53 +08:00
"description": "Bitcoin BIP39: Mnemonic code for generating deterministic keys",
2019-03-23 22:05:26 +09:00
"main": "src/index.js",
"types": "./types/index.d.ts",
2014-03-10 10:49:53 +08:00
"scripts": {
2019-03-24 20:54:56 +09:00
"build": "npm run clean && tsc -p tsconfig.json",
"clean": "rm -rf src",
2016-10-06 01:02:59 +11:00
"coverage": "nyc --branches 100 --functions 100 --check-coverage npm run unit",
2019-03-23 19:59:31 +09:00
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
2019-04-01 14:33:25 +09:00
"gitdiff:ci": "npm run build && git diff --exit-code",
2019-03-23 22:39:32 +09:00
"lint": "tslint -p tsconfig.json -c tslint.json",
2019-03-23 19:59:31 +09:00
"prettier": "prettier 'ts_src/**/*.ts' --ignore-path ./.prettierignore",
"test": "npm run build && npm run format:ci && npm run lint && npm run unit",
2017-03-15 09:57:19 +03:00
"unit": "tape test/*.js",
"update": "node -e \"require('./util/wordlists').update()\""
2014-03-10 10:49:53 +08:00
},
"author": "Wei Lu",
2014-08-17 10:34:50 +08:00
"contributors": [
{
"name": "Daniel Cousens",
"email": "email@dcousens.com",
"url": "http://dcousens.com"
}
],
2014-03-10 10:59:14 +08:00
"repository": {
"type": "git",
2019-03-23 22:55:27 +09:00
"url": "https://github.com/bitcoinjs/bip39.git"
2014-03-10 10:59:14 +08:00
},
2014-03-10 10:49:53 +08:00
"license": "ISC",
2019-03-23 22:05:26 +09:00
"files": [
"src",
"types"
],
2014-03-10 10:49:53 +08:00
"dependencies": {
2019-03-24 20:45:19 +09:00
"@types/node": "11.11.6",
2015-03-18 19:23:26 +11:00
"create-hash": "^1.1.0",
2016-10-06 00:07:58 +11:00
"pbkdf2": "^3.0.9",
2019-04-02 15:53:55 +09:00
"randombytes": "^2.0.1"
2014-03-10 10:49:53 +08:00
},
"devDependencies": {
2019-03-24 11:29:12 +09:00
"@types/create-hash": "1.2.0",
"@types/pbkdf2": "3.0.0",
"@types/randombytes": "2.0.0",
2017-03-15 09:57:19 +03:00
"node-fetch": "^1.6.3",
2019-07-30 10:43:04 +09:00
"nyc": "^14.1.1",
2019-03-24 11:29:12 +09:00
"prettier": "1.16.4",
2016-10-06 00:15:53 +11:00
"proxyquire": "^1.7.10",
2019-03-23 19:58:10 +09:00
"tape": "^4.6.2",
2019-03-24 11:29:12 +09:00
"tslint": "5.14.0",
2019-03-23 19:58:10 +09:00
"typescript": "3.3.4000"
}
2014-03-10 10:49:53 +08:00
}