-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 2.18 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
{
"name": "@bitcoinerlab/coinselect",
"version": "1.2.2",
"author": "Jose-Luis Landabaso",
"license": "MIT",
"description": "A TypeScript library for Bitcoin transaction management, based on Bitcoin Descriptors for defining inputs and outputs. It facilitates optimal UTXO selection and transaction size calculation.",
"homepage": "https://bitcoinerlab.com/modules/coinselect",
"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",
"fixturesCoinselect": "npx ts-node --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json test/tools/coinselect/fixturesFromBjs.ts",
"fixturesVsize": "npm run tester && npx ts-node --transpile-only --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json test/tools/vsize/fixturesFromRegtest.ts",
"build:test": "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/",
"tester": "./node_modules/@bitcoinerlab/configs/scripts/tester.sh",
"test": "npm run lint && npm run build && jest",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoinerlab/coinselect.git"
},
"keywords": [
"coinselect",
"bitcoin",
"descriptors",
"utxos"
],
"bugs": {
"url": "https://github.com/bitcoinerlab/coinselect/issues"
},
"files": [
"dist"
],
"devDependencies": {
"@bitcoinerlab/configs": "github:bitcoinerlab/configs",
"bip39": "^3.1.0",
"bip68": "^1.0.4",
"fs": "^0.0.1-security",
"path": "^0.12.7",
"regtest-client": "^0.2.1"
},
"dependencies": {
"@bitcoinerlab/descriptors": "^2.2.1"
}
}