55 lines
1.9 KiB
JSON
55 lines
1.9 KiB
JSON
{
|
|
"name": "@cosmjs/proto-signing",
|
|
"version": "0.24.0-alpha.22",
|
|
"description": "Utilities for protobuf based signing (Cosmos SDK 0.40+)",
|
|
"contributors": [
|
|
"Will Clark <willclarktech@users.noreply.github.com>",
|
|
"Simon Warta <webmaster128@users.noreply.github.com>"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"files": [
|
|
"build/",
|
|
"*.md",
|
|
"!*.spec.*",
|
|
"!**/testdata/"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cosmos/cosmjs/tree/main/packages/proto-signing"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"docs": "typedoc --options typedoc.js",
|
|
"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",
|
|
"prebuild": "shx rm -rf ./build",
|
|
"build": "tsc",
|
|
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
|
|
"test-node": "node jasmine-testrunner.js",
|
|
"test-firefox": "yarn pack-web && karma start --single-run --browsers Firefox",
|
|
"test-chrome": "yarn pack-web && karma start --single-run --browsers ChromeHeadless",
|
|
"test": "yarn build-or-skip && yarn test-node",
|
|
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet",
|
|
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js",
|
|
"preget-proto": "shx rm -rf proto",
|
|
"get-proto": "REF=v0.40.0 ./scripts/get-proto.sh",
|
|
"define-proto": "./scripts/define-proto.sh",
|
|
"postdefine-proto": "prettier --write \"src/codec/**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/launchpad": "^0.24.0-alpha.22",
|
|
"long": "^4.0.0",
|
|
"protobufjs": "~6.10.2"
|
|
},
|
|
"devDependencies": {
|
|
"@cosmjs/encoding": "^0.24.0-alpha.22",
|
|
"@cosmjs/utils": "^0.24.0-alpha.22"
|
|
}
|
|
}
|