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",
2025-01-15 13:58:25 +01:00
"version": "0.33.0",
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": {
2021-08-04 16:45:19 +02:00
"access": "public",
"registry": "https://registry.npmjs.org"
2020-06-24 17:50:47 +02:00
},
"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-11-22 22:47:23 +01:00
"test-node": "yarn node 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",
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",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"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",
2022-06-21 14:39:23 +02:00
"jasmine": "^4",
2021-04-28 17:54:44 +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",
"nyc": "^15.1.0",
2022-12-07 19:03:00 +01:00
"prettier": "^2.8.1",
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",
2023-04-03 15:58:33 +02:00
"typedoc": "^0.23",
2023-04-03 15:55:13 +02:00
"typescript": "~4.9",
"webpack": "^5.76.0",
2021-05-05 16:50:01 +02:00
"webpack-cli": "^4.6.0"
2023-11-23 12:00:38 +01:00
}
2020-06-24 17:50:47 +02:00
}