mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-11 14:09:15 +00:00
51 lines
1.8 KiB
JSON
51 lines
1.8 KiB
JSON
{
|
|
"name": "@cosmjs/sdk38",
|
|
"version": "0.20.0",
|
|
"description": "Utilities for Cosmos SDK 0.38",
|
|
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
|
|
"license": "Apache-2.0",
|
|
"main": "build/index.js",
|
|
"types": "types/index.d.ts",
|
|
"files": [
|
|
"build/",
|
|
"types/",
|
|
"*.md",
|
|
"!*.spec.*",
|
|
"!**/testdata/"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/CosmWasm/cosmjs/tree/master/packages/sdk38"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"docs": "shx rm -rf docs && typedoc --options typedoc.js",
|
|
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
|
|
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
|
|
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
|
|
"move-types": "shx rm -rf ./types/* && shx mv build/types/* ./types && rm -rf ./types/testdata && shx rm -f ./types/*.spec.d.ts",
|
|
"format-types": "prettier --write --loglevel warn \"./types/**/*.d.ts\"",
|
|
"build": "shx rm -rf ./build && tsc && yarn move-types && yarn format-types",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/crypto": "^0.20.0",
|
|
"@cosmjs/encoding": "^0.20.0",
|
|
"@cosmjs/math": "^0.20.0",
|
|
"@cosmjs/utils": "^0.20.0",
|
|
"axios": "^0.19.0",
|
|
"fast-deep-equal": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"readonly-date": "^1.0.0"
|
|
}
|
|
}
|