-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.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
{
"name": "bd-wallet-core",
"version": "0.0.5",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:bdwallet/bd-wallet-core.git",
"license": "Apache-2.0",
"scripts": {
"test": "nyc mocha ./tests/*.test.ts -r ts-node/register --timeout 60000 --bail",
"pretest": "if [ -z \"$(docker ps -a | grep btc-server)\" ]; then docker run -d -p 8080:8080 --name \"btc-server\" junderw/bitcoinjs-regtest-server; fi",
"prepublishOnly": "sh prepublish.sh"
},
"dependencies": {
"@polkadot/api": "^2.9.1",
"bip32": "^2.0.6",
"bip39": "^3.0.3",
"bitcoinjs-lib": "^5.2.0",
"ethereumjs-util": "^7.0.7",
"tslib": "^2.0.3",
"web3": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"regtest-client": "^0.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib/",
"es/",
"README.md",
"package.json",
"LICENSE"
]
}