-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
84 lines (84 loc) · 2.12 KB
/
package.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@oipwg/hdmw",
"version": "2.0.1",
"description": "BIP44 Javascript Wallet",
"main": "lib/index.js",
"scripts": {
"jest": "jest",
"jest-handles": "jest --runInBand --detectOpenHandles",
"test": "standard && jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"compile": "./node_modules/.bin/babel -d lib/ src/",
"prepublishOnly": "npm run generate-docs && npm run compile",
"generate-docs": "./node_modules/.bin/jsdoc --readme ./README.md -c jsdoc.json",
"standard": "standard",
"standard-fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oipwg/oip-hdmw.git"
},
"keywords": [
"BIP44",
"Javascript",
"Wallet",
"hdmw",
"oip",
"BIP32",
"Bitcoin",
"Litecoin",
"Flo"
],
"contributors": [
"Sky Young",
"Ryan Chacon",
"Jeremiah <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/oipwg/oip-hdmw/issues"
},
"homepage": "https://github.com/oipwg/oip-hdmw#readme",
"dependencies": {
"@oipwg/bip32-utils": "^0.12.1",
"@oipwg/bitcoinjs-lib": "^5.2.0-beta.0",
"@oipwg/bitcoinjs-message": "^2.2.0-beta.0",
"@oipwg/coinselect": "^3.2.0",
"@oipwg/exchange-rate": "^2.0.0-beta.1",
"@oipwg/insight-explorer": "^2.0.0-beta.0",
"axios": "^1.3.4",
"bip174": "^2.1.0",
"bip32": "^2.0.6",
"bip39": "^3.1.0",
"bip44-constants": "^7.1.0",
"bs58check": "^3.0.1",
"coininfo": "^5.2.1",
"create-hash": "^1.2.0",
"safe-buffer": "^5.2.1",
"typeforce": "^1.18.0",
"varuint-bitcoin": "^1.1.2",
"wif": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/cli": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"coveralls": "^3.1.1",
"jest": "^29.4.3",
"jsdoc": "^4.0.2",
"jsdoc-template": "git+https://github.com/oipwg/jsdoc-template.git",
"standard": "^17.0.0",
"taffydb": "^2.7.3"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"ignore": [
"docs/"
]
},
"files": [
"lib"
]
}