@terra-money/core
Version:
This package provides Terra Blockchain client side APIs to support building transaction, singing, or querying chain data.
76 lines (75 loc) • 2.01 kB
JSON
{
"name": "@terra-money/core",
"version": "2.0.9",
"description": "This package provides Terra Blockchain client side APIs to support building transaction, singing, or querying chain data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --declaration",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"testWithCoverage": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ts-node/register tests/**/*.test.ts && nyc report",
"prettier": "prettier --write './{src,tests}/**/*.ts'",
"lint": "tslint -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/terra-project/terra-js.git"
},
"bugs": {
"url": "https://github.com/terra-project/terra-js/issues"
},
"keywords": [
"terra",
"luna",
"core",
"terra",
"blockchain"
],
"author": "Terra Engineering <engineering@terra.money>",
"homepage": "https://terra.money",
"license": "MIT",
"devDependencies": {
"@types/bech32": "^1.1.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.8",
"@types/secp256k1": "^3.5.0",
"chai": "^4.2.0",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"mocha": "^6.2.0",
"nyc": "^15",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
},
"dependencies": {
"@terra-money/amino-js": "^0.2.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/secp256k1": "^3.5.0",
"bech32": "^1.1.3",
"bip32": "^2.0.3",
"bip39": "^3.0.2",
"crypto-js": "^3.1.9-1",
"secp256k1": "^4.0.0",
"ts-node": "^8.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "yarn"
}
},
"lint-staged": {
"./src/**/*.ts": [
"prettier --write",
"tslint -p .",
"git add"
]
}
}