90da6f152b
* typescript validator client: add `denom` argument to constructor and a simple test for querying a balance. Add to yarn workspaces. * Update CHANGELOG
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "@nymproject/nym-validator-client",
|
|
"version": "0.19.0",
|
|
"description": "A TypeScript client for interacting with smart contracts in Nym validators",
|
|
"repository": "https://github.com/nymtech/nym",
|
|
"main": "./dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "ts-mocha tests/**/*.test.ts",
|
|
"coverage": "nyc npm test",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix",
|
|
"docs": "typedoc --out docs src/index.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "Nym Technologies SA (https://nymtech.net)",
|
|
"contributors": [
|
|
"Dave Hrycyszyn (https://constructiveproof.com/)",
|
|
"Jędrzej Stuczynski"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
"@typescript-eslint/parser": "^5.7.0",
|
|
"eslint": "^7.18.0",
|
|
"eslint-config-airbnb": "^19.0.2",
|
|
"eslint-config-airbnb-typescript": "^16.1.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-import-resolver-root-import": "^1.0.4",
|
|
"eslint-plugin-import": "^2.25.4",
|
|
"eslint-plugin-mocha": "^10.0.3",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"expect": "^28.1.3",
|
|
"mocha": "^10.0.0",
|
|
"prettier": "^2.5.1",
|
|
"typedoc": "^0.22.13",
|
|
"ts-mocha": "^10.0.0",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/cosmwasm-stargate": "^0.28.0",
|
|
"@cosmjs/crypto": "^0.28.0",
|
|
"@cosmjs/math": "^0.28.0",
|
|
"@cosmjs/proto-signing": "^0.28.0",
|
|
"@cosmjs/stargate": "^0.28.0",
|
|
"@cosmjs/tendermint-rpc": "^0.28.0",
|
|
"axios": "^0.26.1",
|
|
"cosmjs-types": "^0.4.1"
|
|
}
|
|
}
|