2020-12-02 15:07:22 +00:00
|
|
|
{
|
|
|
|
"name": "@cosmjs/cosmwasm-stargate",
|
2022-12-07 20:58:01 +01:00
|
|
|
"version": "0.29.5",
|
2020-12-02 15:07:22 +00:00
|
|
|
"description": "CosmWasm SDK",
|
|
|
|
"contributors": [
|
|
|
|
"Will Clark <willclarktech@users.noreply.github.com>"
|
|
|
|
],
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"main": "build/index.js",
|
2021-02-09 12:41:52 +00:00
|
|
|
"types": "build/index.d.ts",
|
2020-12-02 15:07:22 +00:00
|
|
|
"files": [
|
|
|
|
"build/",
|
|
|
|
"*.md",
|
|
|
|
"!*.spec.*",
|
|
|
|
"!**/testdata/"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-01-19 23:37:10 +01:00
|
|
|
"url": "https://github.com/cosmos/cosmjs/tree/main/packages/cosmwasm-stargate"
|
2020-12-02 15:07:22 +00:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
2021-08-04 16:45:19 +02:00
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org"
|
2020-12-02 15:07:22 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"docs": "typedoc --options typedoc.js",
|
|
|
|
"format": "prettier --write --loglevel warn \"./src/**/*.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-12-02 15:07:22 +00:00
|
|
|
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
|
2021-11-22 22:47:23 +01:00
|
|
|
"test-node": "yarn node jasmine-testrunner.js",
|
2020-12-02 15:07:22 +00:00
|
|
|
"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",
|
2021-06-03 13:31:04 +02:00
|
|
|
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
|
2020-12-09 12:34:47 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-09-05 17:01:00 +02:00
|
|
|
"@cosmjs/amino": "workspace:^",
|
|
|
|
"@cosmjs/crypto": "workspace:^",
|
|
|
|
"@cosmjs/encoding": "workspace:^",
|
|
|
|
"@cosmjs/math": "workspace:^",
|
|
|
|
"@cosmjs/proto-signing": "workspace:^",
|
|
|
|
"@cosmjs/stargate": "workspace:^",
|
|
|
|
"@cosmjs/tendermint-rpc": "workspace:^",
|
|
|
|
"@cosmjs/utils": "workspace:^",
|
2022-11-28 19:31:31 +01:00
|
|
|
"cosmjs-types": "^0.6.0",
|
2020-12-09 12:34:47 +00:00
|
|
|
"long": "^4.0.0",
|
2022-06-08 19:55:55 -04:00
|
|
|
"pako": "^2.0.2"
|
2020-12-09 12:34:47 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-04 16:26:38 +02:00
|
|
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
2021-05-04 18:40:25 +02:00
|
|
|
"@types/eslint-plugin-prettier": "^3",
|
2022-06-21 14:39:23 +02:00
|
|
|
"@types/jasmine": "^4",
|
2021-05-05 16:57:00 +02:00
|
|
|
"@types/karma-firefox-launcher": "^2",
|
|
|
|
"@types/karma-jasmine": "^4",
|
|
|
|
"@types/karma-jasmine-html-reporter": "^1",
|
2021-05-04 15:49:19 +02:00
|
|
|
"@types/long": "^4.0.1",
|
|
|
|
"@types/node": "^15.0.1",
|
2020-12-09 12:34:47 +00:00
|
|
|
"@types/pako": "^1.0.1",
|
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:04:14 +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",
|
2021-04-28 17:15:25 +02:00
|
|
|
"glob": "^7.1.6",
|
2022-06-21 14:39:23 +02:00
|
|
|
"jasmine": "^4",
|
2021-04-28 17:15:25 +02:00
|
|
|
"jasmine-spec-reporter": "^6",
|
2022-02-20 22:57:01 +01:00
|
|
|
"karma": "^6.3.14",
|
2021-05-05 16:57:00 +02:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
|
|
"karma-firefox-launcher": "^2.1.0",
|
2022-06-21 14:39:23 +02:00
|
|
|
"karma-jasmine": "^5",
|
2021-05-05 16:57:00 +02:00
|
|
|
"karma-jasmine-html-reporter": "^1.5.4",
|
2021-04-28 13:27:56 +02:00
|
|
|
"nyc": "^15.1.0",
|
2022-12-07 19:03:00 +01:00
|
|
|
"prettier": "^2.8.1",
|
2022-06-08 19:55:55 -04:00
|
|
|
"protobufjs": "~6.11.3",
|
2021-04-28 13:20:32 +02:00
|
|
|
"readonly-date": "^1.0.0",
|
2021-04-28 17:15:25 +02:00
|
|
|
"ses": "^0.11.0",
|
|
|
|
"source-map-support": "^0.5.19",
|
2021-05-04 16:26:38 +02:00
|
|
|
"ts-node": "^8",
|
2021-11-24 13:31:57 +01:00
|
|
|
"typedoc": "^0.22",
|
2022-06-27 12:21:06 +02:00
|
|
|
"typescript": "~4.6",
|
2021-05-05 16:50:01 +02:00
|
|
|
"webpack": "^5.32.0",
|
|
|
|
"webpack-cli": "^4.6.0"
|
2022-09-15 13:06:27 +02:00
|
|
|
}
|
2020-12-02 15:07:22 +00:00
|
|
|
}
|