-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "bip85",
"version": "0.0.3",
"description": "TypeScript/JavaScript implementation of Bitcoin BIP85: Deterministic Entropy From BIP32 Keychains",
"main": "src/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"coverage-report": "npm run build && npm run nobuild:coverage-report",
"coverage": "npm run build && npm run nobuild:coverage",
"format": "npm run prettier -- --write",
"format:ci": "npm run prettier -- --check",
"gitdiff:ci": "npm run build && git diff --exit-code",
"lint": "tslint -p tsconfig.json -c tslint.json",
"nobuild:coverage-report": "nyc report --reporter=lcov",
"nobuild:coverage": "nyc --check-coverage --lines 80 --branches 80 --functions 80 npm run nobuild:unit",
"nobuild:unit": "tape test/**/*.spec.js",
"prettier": "prettier 'ts_src/**/*.ts' 'examples/**/*.ts' 'test/**/*.js' --ignore-path ./.prettierignore",
"test": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage",
"unit": "npm run build && npm run nobuild:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreasGassmann/bip85.git"
},
"keywords": [
"bitcoin",
"bitcoinjs",
"bip85",
"mnemonic",
"entropy"
],
"author": "Andreas Gassmann",
"license": "MIT",
"files": [
"src",
"types"
],
"bugs": {
"url": "https://github.com/AndreasGassmann/bip85/issues"
},
"homepage": "https://github.com/AndreasGassmann/bip85#readme",
"dependencies": {
"bip32": "2.0.6",
"bip39": "3.0.2",
"create-hmac": "1.1.7",
"wif": "2.0.6"
},
"devDependencies": {
"@types/create-hmac": "^1.1.0",
"@types/node": "^14.14.0",
"@types/wif": "^2.0.2",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"tape": "^5.0.1",
"tslint": "^6.1.3",
"typescript": "^4.0.5"
}
}