2020-02-06 15:06:43 +01:00
|
|
|
{
|
2020-06-04 19:53:58 +02:00
|
|
|
"name": "@cosmjs/cli",
|
2023-12-19 14:56:50 +01:00
|
|
|
"version": "0.32.2",
|
2020-02-06 15:06:43 +01:00
|
|
|
"description": "Command line interface",
|
2020-02-15 19:09:54 +01:00
|
|
|
"contributors": [
|
|
|
|
"IOV SAS <admin@iov.one>",
|
|
|
|
"Simon Warta"
|
|
|
|
],
|
2020-02-06 15:06:43 +01:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-01-19 23:37:10 +01:00
|
|
|
"url": "https://github.com/cosmos/cosmjs/tree/main/packages/cli"
|
2020-02-06 15:06:43 +01:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
2021-08-04 16:45:19 +02:00
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org"
|
2020-02-06 15:06:43 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
|
2021-07-22 13:43:59 +02:00
|
|
|
"format-examples": "prettier --write --loglevel warn \"./examples/**/*.ts\"",
|
2021-04-28 16:54:44 +02:00
|
|
|
"format-text": "prettier --write \"./*.md\"",
|
2021-05-04 18:40:25 +02:00
|
|
|
"lint": "eslint --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
|
|
|
|
"lint-fix": "eslint --fix --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
|
2021-04-28 18:41:57 +02:00
|
|
|
"build": "rm -rf ./build && tsc",
|
2020-02-06 15:06:43 +01:00
|
|
|
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
|
2022-02-22 14:08:11 +01:00
|
|
|
"start": "yarn build-or-skip && ./bin/cosmjs-cli",
|
|
|
|
"selftest": "yarn build-or-skip && ./bin/cosmjs-cli --selftest",
|
2021-11-22 22:47:23 +01:00
|
|
|
"test-node": "yarn node jasmine-testrunner.js",
|
2020-06-25 15:34:09 +02:00
|
|
|
"test": "yarn build-or-skip && yarn test-node",
|
|
|
|
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet"
|
2020-02-06 15:06:43 +01:00
|
|
|
},
|
|
|
|
"bin": {
|
2022-02-22 14:08:11 +01:00
|
|
|
"cosmjs-cli": "bin/cosmjs-cli"
|
2020-02-06 15:06:43 +01:00
|
|
|
},
|
|
|
|
"files": [
|
2023-03-22 15:29:35 +01:00
|
|
|
"bin/",
|
2020-02-06 15:06:43 +01:00
|
|
|
"build/",
|
|
|
|
"tsconfig_repl.json",
|
|
|
|
"*.md",
|
|
|
|
"!*.spec.*",
|
|
|
|
"!**/testdata/"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2022-09-05 17:01:00 +02:00
|
|
|
"@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:^",
|
2023-11-15 14:14:05 +00:00
|
|
|
"axios": "^1.6.0",
|
2020-02-06 15:06:43 +01:00
|
|
|
"babylon": "^6.18.0",
|
2022-01-10 14:27:29 +01:00
|
|
|
"chalk": "^4",
|
2023-10-03 16:36:02 +02:00
|
|
|
"cosmjs-types": "^0.9.0",
|
2020-02-06 15:16:51 +01:00
|
|
|
"diff": "^4",
|
2021-05-04 11:38:36 +02:00
|
|
|
"recast": "^0.20",
|
2020-02-06 15:19:08 +01:00
|
|
|
"ts-node": "^8",
|
2023-04-03 15:55:13 +02:00
|
|
|
"typescript": "~4.9",
|
2020-03-20 11:50:04 +01:00
|
|
|
"yargs": "^15.3.1"
|
2020-02-06 15:06:43 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-04 16:26:38 +02:00
|
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
2020-02-06 15:06:43 +01:00
|
|
|
"@types/babylon": "^6.16.3",
|
2020-03-20 11:50:04 +01:00
|
|
|
"@types/diff": "^4",
|
2021-05-04 18:40:25 +02:00
|
|
|
"@types/eslint-plugin-prettier": "^3",
|
2022-06-21 14:39:23 +02:00
|
|
|
"@types/jasmine": "^4",
|
2023-04-03 15:38:32 +02:00
|
|
|
"@types/node": "^18",
|
2021-04-27 18:04:14 +02:00
|
|
|
"@types/yargs": "^15.0.4",
|
2023-03-01 14:42:06 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
2021-04-27 18:38:48 +02:00
|
|
|
"eslint": "^7.5",
|
2021-05-04 18:40:25 +02:00
|
|
|
"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",
|
2021-05-26 12:59:41 +02:00
|
|
|
"esm": "^3.2.25",
|
2022-06-21 14:39:23 +02:00
|
|
|
"jasmine": "^4",
|
2021-04-28 17:03:59 +02:00
|
|
|
"jasmine-spec-reporter": "^6",
|
2021-04-28 13:27:56 +02:00
|
|
|
"nyc": "^15.1.0",
|
2022-12-07 19:03:00 +01:00
|
|
|
"prettier": "^2.8.1",
|
2021-04-28 17:03:59 +02:00
|
|
|
"source-map-support": "^0.5.19"
|
2023-11-23 12:00:38 +01:00
|
|
|
}
|
2020-02-06 15:06:43 +01:00
|
|
|
}
|