-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "@xchainjs/xchain-litecoin",
"version": "0.13.11",
"description": "Custom Litecoin client and utilities used by XChainJS clients",
"keywords": [
"XChain",
"Litecoin"
],
"author": "XChainJS",
"homepage": "https://github.com/xchainjs/xchainjs-lib",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"typings": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:xchainjs/xchainjs-lib.git"
},
"scripts": {
"clean": "rm -rf .turbo && rm -rf lib",
"build": "yarn clean && rollup -c",
"test": "jest",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0",
"e2e": "jest --config jest.config.e2e.js",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@types/wif": "^2.0.2",
"@xchainjs/xchain-client": "^0.16.2",
"@xchainjs/xchain-crypto": "^0.3.1",
"@xchainjs/xchain-util": "^0.13.3",
"@xchainjs/xchain-utxo": "^0.1.4",
"@xchainjs/xchain-utxo-providers": "^0.2.12",
"axios": "^1.3.6",
"axios-mock-adapter": "^1.20.0",
"bitcoinjs-lib": "^5.2.0",
"coininfo": "^5.1.0",
"coinselect": "3.1.12",
"wif": "^2.0.6"
},
"peerDependencies": {
"@xchainjs/xchain-client": "^0.16.2",
"@xchainjs/xchain-crypto": "^0.3.1",
"@xchainjs/xchain-util": "^0.13.3",
"@xchainjs/xchain-utxo": "^0.1.4",
"@xchainjs/xchain-utxo-providers": "^0.2.12",
"axios": "^1.3.6",
"bitcoinjs-lib": "5.2.0",
"coininfo": "^5.1.0",
"coinselect": "3.1.12",
"wif": "^2.0.6"
},
"publishConfig": {
"access": "public"
}
}