-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
75 lines (75 loc) · 2.81 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
{
"name": "beignet",
"version": "0.0.51",
"description": "A self-custodial, JS Bitcoin wallet management library.",
"main": "dist/index.js",
"scripts": {
"test": "yarn build && env mocha --exit -r ts-node/register 'tests/**/*.test.ts'",
"test:boost": "yarn build && env mocha --exit -r ts-node/register 'tests/boost.test.ts'",
"test:wallet": "yarn build && env mocha --exit -r ts-node/register 'tests/wallet.test.ts'",
"test:receive": "yarn build && env mocha --exit -r ts-node/register 'tests/receive.test.ts'",
"test:storage": "yarn build && env mocha --exit -r ts-node/register 'tests/storage.test.ts'",
"test:electrum": "yarn build && env mocha --exit -r ts-node/register 'tests/electrum.test.ts'",
"test:derivation": "yarn build && env mocha --exit -r ts-node/register 'tests/derivation.test.ts'",
"test:transaction": "yarn build && env mocha --exit -r ts-node/register 'tests/transaction.test.ts'",
"example": "ts-node example",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"tsc:check": "tsc -p tsconfig.json --noEmit",
"build": "tsc",
"docs:markdown": "npx typedoc --plugin typedoc-plugin-markdown --out docs/markdown src/index.ts",
"docs:html": "npx typedoc --out docs/html",
"docs": "npm run build && npm run docs:markdown && npm run docs:html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synonymdev/beignet.git",
"baseUrl": "https://github.com/synonymdev/beignet"
},
"keywords": [
"Bitcoin",
"wallet"
],
"types": "dist/types/index.d.ts",
"author": "synonymdev",
"license": "MIT",
"bugs": {
"url": "https://github.com/synonymdev/beignet/issues"
},
"homepage": "https://github.com/synonymdev/beignet#readme",
"dependencies": {
"@bitcoinerlab/secp256k1": "1.0.5",
"bech32": "2.0.0",
"bip21": "2.0.3",
"bip32": "4.0.0",
"bip39": "3.1.0",
"bitcoin-address-validation": "2.2.3",
"bitcoin-units": "0.3.0",
"bitcoinjs-lib": "6.1.4",
"ecpair": "2.1.0",
"lodash.clonedeep": "4.5.0",
"net": "1.0.2",
"rn-electrum-client": "0.0.21"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/mocha": "9.0.0",
"@types/node": "20.4.10",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"bitcoin-json-rpc": "1.3.3",
"bw-electrum-client": "BlueWallet/rn-electrum-client#47acb51149e97fab249c3f8a314f708dbee4fb6e",
"chai": "4.3.4",
"eslint": "8.4.1",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"mocha": "10.1.0",
"prettier": "3.0.2",
"sinon": "18.0.0",
"ts-node": "10.9.0",
"typedoc": "0.24.8",
"typedoc-plugin-markdown": "3.15.4",
"typescript": "4.9"
}
}