-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "@xchainjs/xchain-binance",
"version": "5.7.11",
"description": "Custom Binance client and utilities used by XChainJS clients",
"keywords": [
"BNB",
"Binance",
"XChain"
],
"author": "THORChain",
"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",
"compile": "tsc -p tsconfig.build.json",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0"
},
"devDependencies": {
"@binance-chain/javascript-sdk": "^4.2.0",
"@types/big.js": "^6.1.6",
"@xchainjs/xchain-client": "^0.16.2",
"@xchainjs/xchain-crypto": "^0.3.1",
"@xchainjs/xchain-util": "^0.13.3",
"nock": "13.0.5"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@binance-chain/javascript-sdk": "^4.2.0",
"@xchainjs/xchain-client": "^0.16.2",
"@xchainjs/xchain-crypto": "^0.3.1",
"@xchainjs/xchain-util": "^0.13.3"
}
}