smartrx/package.json

45 lines
1017 B
JSON
Raw Normal View History

2017-10-26 13:08:34 +00:00
{
2023-07-10 08:17:56 +00:00
"name": "@push.rocks/smartrx",
2023-06-11 20:15:29 +00:00
"version": "3.0.2",
"private": false,
2017-10-26 13:08:34 +00:00
"description": "smart wrapper for rxjs",
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",
"@gitzone/tsrun": "^1.2.42",
2022-08-05 10:50:37 +00:00
"@gitzone/tstest": "^1.0.73",
"@pushrocks/tapbundle": "^5.0.4",
2023-06-10 11:33:09 +00:00
"@types/node": "^20.2.6",
2020-09-24 17:28:57 +00:00
"tslint": "^6.1.3",
2019-09-10 05:25:59 +00:00
"tslint-config-prettier": "^1.18.0"
2017-10-26 13:08:34 +00:00
},
"dependencies": {
2023-06-10 11:33:09 +00:00
"@pushrocks/smartpromise": "^4.0.2",
"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"
2019-09-10 05:26:50 +00:00
]
2023-07-10 08:17:56 +00:00
}