{ "name": "@cosmjs/cli", "version": "0.32.3", "description": "Command line interface", "contributors": [ "IOV SAS ", "Simon Warta" ], "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/cosmos/cosmjs/tree/main/packages/cli" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "scripts": { "format": "prettier --write --loglevel warn \"./src/**/*.ts\"", "format-examples": "prettier --write --loglevel warn \"./examples/**/*.ts\"", "format-text": "prettier --write \"./*.md\"", "lint": "eslint --max-warnings 0 \"./**/*.ts\" \"./*.js\"", "lint-fix": "eslint --fix --max-warnings 0 \"./**/*.ts\" \"./*.js\"", "build": "rm -rf ./build && tsc", "build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build", "start": "yarn build-or-skip && ./bin/cosmjs-cli", "selftest": "yarn build-or-skip && ./bin/cosmjs-cli --selftest", "test-node": "yarn node jasmine-testrunner.js", "test": "yarn build-or-skip && yarn test-node", "coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet" }, "bin": { "cosmjs-cli": "bin/cosmjs-cli" }, "files": [ "bin/", "build/", "tsconfig_repl.json", "*.md", "!*.spec.*", "!**/testdata/" ], "dependencies": { "@cosmjs/amino": "workspace:^", "@cosmjs/cosmwasm-stargate": "workspace:^", "@cosmjs/crypto": "workspace:^", "@cosmjs/encoding": "workspace:^", "@cosmjs/faucet-client": "workspace:^", "@cosmjs/math": "workspace:^", "@cosmjs/proto-signing": "workspace:^", "@cosmjs/stargate": "workspace:^", "@cosmjs/tendermint-rpc": "workspace:^", "@cosmjs/utils": "workspace:^", "axios": "^1.6.0", "babylon": "^6.18.0", "chalk": "^4", "cosmjs-types": "^0.9.0", "diff": "^4", "recast": "^0.20", "ts-node": "^8", "typescript": "~4.9", "yargs": "^15.3.1" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@types/babylon": "^6.16.3", "@types/diff": "^4", "@types/eslint-plugin-prettier": "^3", "@types/jasmine": "^4", "@types/node": "^18", "@types/yargs": "^15.0.4", "@typescript-eslint/eslint-plugin": "^5.54.0", "@typescript-eslint/parser": "^5.54.0", "eslint": "^7.5", "eslint-config-prettier": "^8.3.0", "eslint-import-resolver-node": "^0.3.4", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.4.0", "eslint-plugin-simple-import-sort": "^7.0.0", "esm": "^3.2.25", "jasmine": "^4", "jasmine-spec-reporter": "^6", "nyc": "^15.1.0", "prettier": "^2.8.1", "source-map-support": "^0.5.19" } }