smartstream/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2016-08-16 06:37:51 +00:00
{
2023-07-12 09:27:46 +00:00
"name": "@push.rocks/smartstream",
2023-07-12 09:27:47 +00:00
"version": "2.0.4",
2019-02-19 00:10:56 +00:00
"private": false,
"description": "simplifies access to node streams",
2022-03-30 23:20:01 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2016-08-16 06:37:51 +00:00
"scripts": {
2019-02-19 00:10:56 +00:00
"test": "(tstest test/)",
"build": "(tsbuild)"
2016-08-16 06:37:51 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartstream.git"
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartstream/issues"
},
2016-09-25 12:00:16 +00:00
"homepage": "https://gitlab.com/pushrocks/smartstream#README",
"devDependencies": {
2023-07-12 09:27:46 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@push.rocks/smartfile": "^10.0.28",
"@push.rocks/tapbundle": "^5.0.3"
2016-09-25 12:00:16 +00:00
},
"dependencies": {
2023-07-12 09:27:46 +00:00
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.3",
"@types/from2": "^2.3.2",
"@types/through2": "^2.0.38",
2022-06-07 14:16:14 +00:00
"from2": "^2.3.0",
2022-03-30 23:20:01 +00:00
"through2": "^4.0.2"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2023-07-12 09:27:47 +00:00
}