mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
84 lines
3.0 KiB
JSON
84 lines
3.0 KiB
JSON
{
|
|
"name": "cosm-js",
|
|
"version": "2.0.0-alpha.7",
|
|
"description": "Transaction codec and client to communicate with any wasmd blockchain",
|
|
"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/confio/cosm-js"
|
|
},
|
|
"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}\" && tslint -t verbose --project .",
|
|
"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-edge": "yarn pack-web && karma start --single-run --browsers Edge",
|
|
"test-firefox": "yarn pack-web && karma start --single-run --browsers Firefox",
|
|
"test-chrome": "yarn pack-web && karma start --single-run --browsers ChromeHeadlessInsecure",
|
|
"test-safari": "yarn pack-web && karma start --single-run --browsers Safari",
|
|
"test": "yarn build-or-skip && yarn test-node",
|
|
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
|
|
},
|
|
"dependencies": {
|
|
"@iov/bcp": "^2.0.0-alpha.7",
|
|
"@iov/crypto": "^2.0.0-alpha.7",
|
|
"@iov/encoding": "^2.0.0-alpha.7",
|
|
"@iov/stream": "^2.0.0-alpha.7",
|
|
"@tendermint/amino-js": "^0.7.0-alpha.1",
|
|
"axios": "^0.19.0",
|
|
"fast-deep-equal": "^3.1.1",
|
|
"readonly-date": "^1.0.0",
|
|
"xstream": "^11.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@iov/keycontrol": "^2.0.0-alpha.7",
|
|
"@types/jasmine": "^3.3.7",
|
|
"@types/memdown": "^3.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^2.10.0",
|
|
"@typescript-eslint/parser": "^2.10.0",
|
|
"eslint": "^6.7.2",
|
|
"eslint-config-prettier": "^6.2.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
"eslint-plugin-simple-import-sort": "^4.0.0",
|
|
"jasmine": "^3.3.1",
|
|
"jasmine-spec-reporter": "^4.2.1",
|
|
"karma": "^4.1.0",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-edge-launcher": "^0.4.2",
|
|
"karma-firefox-launcher": "^1.1.0",
|
|
"karma-jasmine": "^2",
|
|
"karma-jasmine-html-reporter": "^1.4",
|
|
"karma-safari-launcher": "^1.0.0",
|
|
"lerna": "^3.14.1",
|
|
"memdown": "^4.0.0",
|
|
"prettier": "^1.19.1",
|
|
"shx": "^0.3.2",
|
|
"source-map-support": "^0.5.6",
|
|
"tslint": "^5.19.0",
|
|
"tslint-config-prettier": "^1.13.0",
|
|
"tslint-immutable": "^5.5.2",
|
|
"typescript": "~3.7",
|
|
"webpack": "^4.12.0",
|
|
"webpack-cli": "^3.3.8"
|
|
|
|
}
|
|
}
|