cosmjs/packages/stream/package.json

83 lines
2.8 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-06-23 17:34:42 +02:00
"version": "0.25.5",
2020-06-24 17:53:19 +02:00
"description": "Utility functions for producing and consuming streams",
"contributors": [
"IOV SAS <admin@iov.one>",
2021-06-08 10:40:29 +02:00
"Confio OÜ <hello@confio.tech>",
2020-06-24 17:53:19 +02:00
"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\"",
"format-text": "prettier --write \"./*.md\"",
2021-05-26 12:59:41 +02:00
"test-node": "node --require esm jasmine-testrunner.js",
2020-06-24 17:50:47 +02:00
"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"
},
"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",
"@types/jasmine": "^3.6.10",
2021-05-05 16:57:00 +02:00
"@types/karma-firefox-launcher": "^2",
"@types/karma-jasmine": "^4",
"@types/karma-jasmine-html-reporter": "^1",
"@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",
"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:54:44 +02:00
"glob": "^7.1.6",
"jasmine": "^3.5",
2021-05-05 16:57:00 +02:00
"jasmine-core": "^3.7.1",
2021-04-28 17:54:44 +02:00
"jasmine-spec-reporter": "^6",
"karma": "^6.1.1",
2021-05-05 16:57:00 +02:00
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"nyc": "^15.1.0",
"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",
"typedoc": "^0.20",
2021-07-20 15:07:58 +02:00
"typescript": "~4.3",
2021-05-05 16:50:01 +02:00
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0"
2020-06-24 17:50:47 +02:00
}
}