cosmjs/packages/cli/package.json
Simon Warta 0d4ab069b2 v0.21.0
2020-06-28 08:34:18 +02:00

63 lines
1.7 KiB
JSON

{
"name": "@cosmjs/cli",
"version": "0.21.0",
"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.21.0",
"@cosmjs/crypto": "^0.21.0",
"@cosmjs/encoding": "^0.21.0",
"@cosmjs/math": "^0.21.0",
"@cosmjs/sdk38": "^0.21.0",
"@cosmjs/utils": "^0.21.0",
"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"
}
}