smartstream/package.json

51 lines
1.1 KiB
JSON
Raw Normal View History

2016-08-16 06:37:51 +00:00
{
2019-02-19 00:10:56 +00:00
"name": "@pushrocks/smartstream",
2022-03-30 23:20:20 +00:00
"version": "2.0.1",
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": {
2022-03-30 23:20:01 +00:00
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tstest": "^1.0.70",
"@pushrocks/tapbundle": "^5.0.3",
"tslint": "^6.1.3",
2019-02-19 00:10:56 +00:00
"tslint-config-prettier": "^1.18.0"
2016-09-25 12:00:16 +00:00
},
"dependencies": {
2022-03-30 23:20:01 +00:00
"@pushrocks/smartpromise": "^3.1.7",
"@types/through2": "^2.0.36",
"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"
]
2022-03-30 23:20:01 +00:00
}