-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "@tixl/tixl-btc-utils",
"version": "1.10.1",
"description": "Some utilities that are used to communicate wit the Bitcoin blockchain.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"generate-wallet": "ts-node src/scripts/generateWallet.ts",
"prepublish": "yarn build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tixl/tixl-btc-utils.git"
},
"keywords": [
"Tixl",
"MTXLT",
"Bitcoin",
"BTC"
],
"author": "Tixl gGmbH <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tixl/tixl-btc-utils/issues"
},
"homepage": "https://github.com/tixl/tixl-btc-utils#readme",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/bitcoinjs-lib": "^5.0.0",
"bitcoinjs-lib": "^5.1.7",
"bitcore-message": "^1.0.4",
"bs58": "^4.0.1",
"firebase": "^7.14.1",
"js-sha256": "^0.9.0",
"lodash": "^4.17.15",
"wallet-address-validator": "^0.2.4"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.6",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}