@xchainjs/xchain-util
Version:
Helper utilities for XChain clients
40 lines • 1.06 kB
JSON
{
"name": "@xchainjs/xchain-util",
"version": "2.0.4",
"description": "Helper utilities for XChain clients",
"keywords": [
"THORChain",
"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 --bundleConfigAsCjs",
"build:release": "yarn exec rm -rf release && yarn pack && yarn exec \"mkdir release && tar zxvf package.tgz --directory release && rm package.tgz\"",
"test": "jest",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix --max-warnings 0"
},
"dependencies": {
"bignumber.js": "^9.0.0"
},
"publishConfig": {
"access": "public",
"directory": "release/package"
}
}