mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
87 lines
2.7 KiB
JSON
87 lines
2.7 KiB
JSON
{
|
|
"name": "@cosmjs/cli",
|
|
"version": "0.29.5",
|
|
"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",
|
|
"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": [
|
|
"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": "^0.21.2",
|
|
"babylon": "^6.18.0",
|
|
"chalk": "^4",
|
|
"cosmjs-types": "^0.6.0",
|
|
"diff": "^4",
|
|
"recast": "^0.20",
|
|
"ts-node": "^8",
|
|
"typescript": "~4.6",
|
|
"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": "^15.0.1",
|
|
"@types/yargs": "^15.0.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
|
"@typescript-eslint/parser": "^5.13.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"
|
|
}
|
|
}
|