-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
78 lines (78 loc) · 3.27 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
{
"name": "@bitcoinerlab/descriptors",
"description": "This library parses and creates Bitcoin Miniscript Descriptors and generates Partially Signed Bitcoin Transactions (PSBTs). It provides PSBT finalizers and signers for single-signature, BIP32 and Hardware Wallets.",
"homepage": "https://github.com/bitcoinerlab/descriptors",
"version": "2.2.0",
"author": "Jose-Luis Landabaso",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinerlab/descriptors.git"
},
"keywords": [
"bitcoin",
"descriptors",
"bitcoinjs",
"miniscript"
],
"bugs": {
"url": "https://github.com/bitcoinerlab/descriptors/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prettier": "@bitcoinerlab/configs/prettierConfig.json",
"eslintConfig": {
"extends": "./node_modules/@bitcoinerlab/configs/eslintConfig"
},
"jest": {
"preset": "@bitcoinerlab/configs"
},
"scripts": {
"webdocs": "typedoc --options ./node_modules/@bitcoinerlab/configs/webtypedoc.json",
"docs": "typedoc --options ./node_modules/@bitcoinerlab/configs/typedoc.json",
"build:src": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.src.json",
"build:fixtures": "node test/tools/generateBitcoinCoreFixtures.js -i test/fixtures/descriptor_tests.cpp | npx prettier --parser typescript > test/fixtures/bitcoinCore.ts",
"build:test": "npm run build:fixtures && tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json --resolveJsonModule",
"build": "npm run build:src && npm run build:test",
"lint": "eslint --ignore-path .gitignore --ext .ts src/ test/",
"ensureTester": "./node_modules/@bitcoinerlab/configs/scripts/ensureTester.sh",
"test:integration:soft": "npm run ensureTester && node test/integration/standardOutputs.js && echo \"\\n\\n\" && node test/integration/miniscript.js",
"test:integration:ledger": "npm run ensureTester && node test/integration/ledger.js",
"test:integration:deprecated": "npm run ensureTester && node test/integration/standardOutputs-deprecated.js && echo \"\\n\\n\" && node test/integration/miniscript-deprecated.js && echo \"\\n\\n\" && node test/integration/ledger-deprecated.js",
"test:unit": "jest",
"test": "npm run lint && npm run build && npm run test:unit && npm run test:integration:soft",
"testledger": "npm run lint && npm run build && npm run test:integration:ledger",
"prepublishOnly": "npm run test && echo \"\\n\\n\" && npm run test:integration:deprecated && npm run test:integration:ledger"
},
"files": [
"dist"
],
"peerDependencies": {
"ledger-bitcoin": "^0.2.2"
},
"peerDependenciesMeta": {
"ledger-bitcoin": {
"optional": true
}
},
"devDependencies": {
"@bitcoinerlab/configs": "github:bitcoinerlab/configs",
"@ledgerhq/hw-transport-node-hid": "^6.27.12",
"@types/lodash.memoize": "^4.1.9",
"bip39": "^3.0.4",
"bip65": "^1.0.3",
"bip68": "^1.0.4",
"ledger-bitcoin": "^0.2.2",
"regtest-client": "^0.2.0",
"yargs": "^17.7.2"
},
"dependencies": {
"@bitcoinerlab/miniscript": "^1.4.0",
"@bitcoinerlab/secp256k1": "^1.1.1",
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.3",
"ecpair": "^2.1.0",
"lodash.memoize": "^4.1.2",
"varuint-bitcoin": "^1.1.2"
}
}