forked from unchained-capital/unchained-bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.62 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "unchained-bitcoin",
"version": "0.3.1",
"description": "Unchained Capital's bitcoin utilities library.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/unchained-capital/unchained-bitcoin.git"
},
"author": "Unchained Capital",
"license": "MIT",
"bugs": {
"url": "https://github.com/unchained-capital/unchained-bitcoin/issues"
},
"homepage": "https://unchained-capital.github.io/unchained-bitcoin",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"bs58": "^4.0.1",
"eslint": "^6.6.0",
"eslint-plugin-jest": "^23.0.3",
"husky": "^8.0.3",
"jest": "^29.4.1",
"jest-junit": "^9.0.0",
"jsdoc": "^4.0.0",
"lint-staged": "^13.1.2",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"typescript": "^4.1.3"
},
"scripts": {
"build-types": "tsc -p tsconfig.json",
"build-types:watch": "tsc --watch",
"check-types": "tsc -p tsconfig.json --noEmit --emitDeclarationOnly false",
"compile": "babel --extensions .ts,.js -d lib/ src/",
"compile:watch": "babel --extensions .ts,.js --watch -d lib/ src/",
"coverage": "jest --coverage",
"prepublish": "npm run compile",
"pretest": "npm run build-types && npm run compile",
"prepare": "npm run compile && husky install",
"test": "jest lib",
"test:watch": "jest --watch src",
"docs": "./bin/build-docs.sh",
"lint": "eslint src"
},
"bin": {},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"bignumber.js": "^8.1.1",
"bip32": "^2.0.5",
"bip66": "^1.1.5",
"bitcoin-address-validation": "^0.2.9",
"bitcoinjs-lib": "^5.1.10",
"bs58check": "^2.1.2",
"bufio": "^1.2.0",
"core-js": "^2.6.10"
},
"directories": {
"lib": "lib"
},
"babel": {
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
],
"presets": [
"@babel/typescript",
[
"@babel/env",
{
"useBuiltIns": "usage",
"corejs": 2,
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
]
}
}
]
]
}
}