2020-06-24 17:50:47 +02:00
|
|
|
{
|
2020-06-24 17:53:19 +02:00
|
|
|
"name": "@cosmjs/stream",
|
2021-05-11 15:27:27 +02:00
|
|
|
"version": "0.25.2",
|
2020-06-24 17:53:19 +02:00
|
|
|
"description": "Utility functions for producing and consuming streams",
|
|
|
|
"contributors": [
|
|
|
|
"IOV SAS <admin@iov.one>",
|
|
|
|
"Confio UO <hello@confio.tech>",
|
|
|
|
"Will Clark <willclarktech@users.noreply.github.com>"
|
|
|
|
],
|
2020-06-24 17:50:47 +02:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"main": "build/index.js",
|
2021-02-09 12:41:52 +00:00
|
|
|
"types": "build/index.d.ts",
|
2020-06-24 17:50:47 +02: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/stream"
|
2020-06-24 17:50:47 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2020-07-02 10:38:19 +02:00
|
|
|
"docs": "typedoc --options typedoc.js",
|
2021-05-04 18:40:25 +02:00
|
|
|
"lint": "eslint --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
|
|
|
|
"lint-fix": "eslint --fix --max-warnings 0 \"./**/*.ts\" \"./*.js\"",
|
2020-06-24 17:50:47 +02:00
|
|
|
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
|
2021-04-28 16:54:44 +02:00
|
|
|
"format-text": "prettier --write \"./*.md\"",
|
2020-06-24 17:50:47 +02:00
|
|
|
"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 ChromeHeadless",
|
|
|
|
"test-safari": "yarn pack-web && karma start --single-run --browsers Safari",
|
|
|
|
"test": "yarn build-or-skip && yarn test-node",
|
2020-06-25 15:51:53 +02:00
|
|
|
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet",
|
2021-04-28 18:41:57 +02:00
|
|
|
"build": "rm -rf ./build && tsc",
|
2020-06-24 17:50:47 +02:00
|
|
|
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
|
|
|
|
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-10-13 10:49:43 +02:00
|
|
|
"xstream": "^11.14.0"
|
2021-04-27 18:04:14 +02: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",
|
2021-05-04 15:49:19 +02:00
|
|
|
"@types/jasmine": "^3.6.10",
|
|
|
|
"@types/node": "^15.0.1",
|
2021-05-04 18:40:25 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.22.1",
|
|
|
|
"@typescript-eslint/parser": "^4.22.1",
|
2021-04-27 18:38:48 +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-04-28 17:54:44 +02:00
|
|
|
"glob": "^7.1.6",
|
|
|
|
"jasmine": "^3.5",
|
|
|
|
"jasmine-spec-reporter": "^6",
|
2021-04-28 14:37:20 +02:00
|
|
|
"karma": "^6.1.1",
|
2021-04-28 13:27:56 +02:00
|
|
|
"nyc": "^15.1.0",
|
2021-04-28 13:20:32 +02:00
|
|
|
"prettier": "^2.0.5",
|
2021-04-28 17:54:44 +02:00
|
|
|
"ses": "^0.11.0",
|
|
|
|
"source-map-support": "^0.5.19",
|
2021-05-04 16:26:38 +02:00
|
|
|
"ts-node": "^8",
|
2021-04-28 14:06:43 +02:00
|
|
|
"typedoc": "^0.20",
|
2021-04-28 16:29:45 +02:00
|
|
|
"typescript": "~4.0",
|
2021-04-28 13:20:32 +02:00
|
|
|
"webpack": "^5.32.0"
|
2020-06-24 17:50:47 +02:00
|
|
|
}
|
|
|
|
}
|