Files
nym/clients/validator/package.json
T
Dave Hrycyszyn d301694404 Feature/upgrade cosm client (#534)
* Exporting Coin struct, needed for wallet

* Upgrading cosmwasm client to 0.24.1
2021-03-18 14:40:55 +00:00

40 lines
1.1 KiB
JSON

{
"name": "nym-validator-client",
"version": "0.1.0",
"description": "A TypeScript client for interacting with CosmWasm smart contracts in Nym validators",
"repository": "https://code.constructiveproof.com/dave/validator-client",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "ts-mocha tests/**/*.test.ts",
"coverage": "nyc npm test",
"lint": "eslint \"**/*.ts\"",
"docs": "typedoc --out docs src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"chai": "^4.2.0",
"eslint": "^7.18.0",
"mocha": "^8.2.1",
"moq.ts": "^7.2.0",
"nyc": "^15.1.0",
"ts-mocha": "^8.0.0",
"typedoc": "^0.20.27",
"typescript": "^4.1.3"
},
"dependencies": {
"@cosmjs/cosmwasm": "^0.24.1",
"@cosmjs/cosmwasm-stargate": "^0.24.1",
"@cosmjs/crypto": "^0.24.1",
"@cosmjs/launchpad": "^0.24.1",
"@cosmjs/proto-signing": "^0.24.1",
"@cosmjs/math": "^0.24.1"
}
}