smartbucket/package.json

46 lines
1.0 KiB
JSON
Raw Normal View History

2018-03-30 17:42:14 +00:00
{
2018-04-01 17:06:28 +00:00
"name": "@pushrocks/smartbucket",
2022-04-04 11:42:18 +00:00
"version": "2.0.1",
2019-07-07 08:48:24 +00:00
"description": "simple cloud independent object storage",
2020-05-17 15:57:12 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-30 23:45:46 +00:00
"type": "module",
2018-03-30 17:42:14 +00:00
"author": "Lossless GmbH",
2018-09-14 16:07:20 +00:00
"license": "UNLICENSED",
2018-03-30 17:42:14 +00:00
"scripts": {
2019-10-16 17:15:48 +00:00
"test": "(tstest test/)",
2020-06-19 01:03:52 +00:00
"build": "(tsbuild --web)"
2018-03-30 17:42:14 +00:00
},
2018-03-30 17:42:23 +00:00
"devDependencies": {
2022-03-30 23:45:46 +00:00
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tstest": "^1.0.70",
2022-04-04 11:42:15 +00:00
"@pushrocks/tapbundle": "^5.0.3",
"@pushrocks/qenv": "^4.0.10"
2018-03-30 17:42:14 +00:00
},
2018-09-14 16:07:20 +00:00
"dependencies": {
2022-03-30 23:45:46 +00:00
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartrx": "^2.0.25",
"@pushrocks/smartstream": "^2.0.1",
"@pushrocks/streamfunction": "^3.0.4",
"@types/minio": "^7.0.12",
"minio": "^7.0.26"
2018-09-14 16:07:20 +00:00
},
2019-10-16 13:21:02 +00:00
"private": false,
2019-07-07 08:48:24 +00:00
"files": [
2019-10-14 18:55:25 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-17 15:57:12 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-14 18:55:25 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-07 08:48:24 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-12 00:37:50 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-07-07 08:48:24 +00:00
]
2022-03-30 23:45:46 +00:00
}