69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"name": "@cosmjs/cli",
|
|
"version": "0.25.0-alpha.3",
|
|
"description": "Command line interface",
|
|
"contributors": [
|
|
"IOV SAS <admin@iov.one>",
|
|
"Simon Warta"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cosmos/cosmjs/tree/main/packages/cli"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
|
|
"format-text": "prettier --write \"./*.md\"",
|
|
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
|
|
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
|
|
"prebuild": "shx rm -rf ./build",
|
|
"build": "tsc",
|
|
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
|
|
"start": "yarn build-or-skip && ./bin/cosmwasm-cli",
|
|
"selftest": "yarn build-or-skip && ./bin/cosmwasm-cli --selftest",
|
|
"test-node": "node jasmine-testrunner.js",
|
|
"test": "yarn build-or-skip && yarn test-node",
|
|
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet"
|
|
},
|
|
"bin": {
|
|
"cosmwasm-cli": "bin/cosmwasm-cli"
|
|
},
|
|
"files": [
|
|
"build/",
|
|
"tsconfig_repl.json",
|
|
"*.md",
|
|
"!*.spec.*",
|
|
"!**/testdata/"
|
|
],
|
|
"dependencies": {
|
|
"@cosmjs/amino": "^0.25.0-alpha.3",
|
|
"@cosmjs/cosmwasm-launchpad": "^0.25.0-alpha.3",
|
|
"@cosmjs/cosmwasm-stargate": "^0.25.0-alpha.3",
|
|
"@cosmjs/crypto": "^0.25.0-alpha.3",
|
|
"@cosmjs/encoding": "^0.25.0-alpha.3",
|
|
"@cosmjs/faucet-client": "^0.25.0-alpha.3",
|
|
"@cosmjs/launchpad": "^0.25.0-alpha.3",
|
|
"@cosmjs/math": "^0.25.0-alpha.3",
|
|
"@cosmjs/proto-signing": "^0.25.0-alpha.3",
|
|
"@cosmjs/stargate": "^0.25.0-alpha.3",
|
|
"@cosmjs/tendermint-rpc": "^0.25.0-alpha.3",
|
|
"@cosmjs/utils": "^0.25.0-alpha.3",
|
|
"axios": "^0.21.1",
|
|
"babylon": "^6.18.0",
|
|
"colors": "^1.3.3",
|
|
"diff": "^4",
|
|
"recast": "^0.18.0",
|
|
"ts-node": "^8",
|
|
"typescript": "~4.0",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/babylon": "^6.16.3",
|
|
"@types/diff": "^4",
|
|
"@types/yargs": "^15.0.4"
|
|
}
|
|
}
|