smartrx/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2017-10-26 13:08:34 +00:00
{
2023-07-10 08:17:56 +00:00
"name": "@push.rocks/smartrx",
2023-11-04 00:06:12 +00:00
"version": "3.0.8",
"private": false,
2024-04-14 16:15:29 +00:00
"description": "A smart wrapper for rxjs to manage and extend observables.",
2020-05-26 00:18:02 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-05 10:50:37 +00:00
"type": "module",
2017-10-26 13:08:34 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-08-05 11:25:44 +00:00
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
2017-10-26 13:08:34 +00:00
},
2017-10-26 20:56:01 +00:00
"devDependencies": {
2023-06-10 11:33:09 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
2023-07-24 11:09:38 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
2023-11-01 13:12:53 +00:00
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.10"
2017-10-26 13:08:34 +00:00
},
"dependencies": {
2023-07-12 08:57:25 +00:00
"@push.rocks/smartpromise": "^4.0.2",
2023-06-10 11:33:09 +00:00
"rxjs": "^7.8.1"
2019-09-10 05:26:50 +00:00
},
"files": [
2020-05-26 00:18:02 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-10 05:26:50 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-12 01:53:32 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:15:29 +00:00
],
"keywords": [
"rxjs",
"wrapper",
"observables",
"event emitter",
"stream processing",
"reactive programming",
"backpressure",
"event handling"
2024-05-29 12:15:57 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartrx",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartrx.git"
}
2024-04-14 16:15:29 +00:00
}