mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00
63 lines
1.7 KiB
JSON
63 lines
1.7 KiB
JSON
{
|
|
"name": "@cosmjs/cli",
|
|
"version": "0.22.2",
|
|
"description": "Command line interface",
|
|
"contributors": [
|
|
"IOV SAS <admin@iov.one>",
|
|
"Simon Warta"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CosmWasm/cosmjs/tree/master/packages/cli"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
|
|
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\"",
|
|
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
|
|
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
|
|
"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/",
|
|
"types/",
|
|
"tsconfig_repl.json",
|
|
"*.md",
|
|
"!*.spec.*",
|
|
"!**/testdata/"
|
|
],
|
|
"dependencies": {
|
|
"@cosmjs/cosmwasm": "^0.22.2",
|
|
"@cosmjs/crypto": "^0.22.2",
|
|
"@cosmjs/encoding": "^0.22.2",
|
|
"@cosmjs/launchpad": "^0.22.2",
|
|
"@cosmjs/math": "^0.22.2",
|
|
"@cosmjs/utils": "^0.22.2",
|
|
"axios": "^0.19.2",
|
|
"babylon": "^6.18.0",
|
|
"colors": "^1.3.3",
|
|
"diff": "^4",
|
|
"recast": "^0.18.0",
|
|
"ts-node": "^8",
|
|
"typescript": "~3.9",
|
|
"yargs": "^15.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/babylon": "^6.16.3",
|
|
"@types/diff": "^4",
|
|
"@types/yargs": "^15.0.4"
|
|
}
|
|
}
|