cosmjs/packages/stream/package.json

49 lines
1.7 KiB
JSON
Raw Normal View History

2020-06-24 17:50:47 +02:00
{
2020-06-24 17:53:19 +02:00
"name": "@cosmjs/stream",
2021-01-28 15:36:40 +01:00
"version": "0.24.0-alpha.22",
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",
"types": "types/index.d.ts",
"files": [
"build/",
"types/",
"*.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",
2020-06-24 17:53:19 +02:00
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
2020-06-24 17:50:47 +02:00
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\"",
"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",
"prebuild": "shx rm -rf ./build",
2020-08-13 14:50:14 +02:00
"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"
2020-06-24 17:50:47 +02:00
}
}