smarts3/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2021-12-18 00:41:50 +00:00
{
2023-07-10 08:17:59 +00:00
"name": "@push.rocks/smarts3",
2022-07-30 13:50:38 +00:00
"version": "2.1.1",
2021-12-18 00:41:50 +00:00
"private": false,
2024-04-14 16:16:08 +00:00
"description": "Creates an S3 endpoint that maps to a local directory for testing and local development.",
2021-12-18 00:41:50 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-04-14 08:36:24 +00:00
"type": "module",
2021-12-18 00:41:50 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-04-14 08:55:07 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2021-12-18 00:41:50 +00:00
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.6",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
2022-07-30 13:50:38 +00:00
"@types/node": "^18.6.2"
2021-12-18 00:41:50 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"dependencies": {
"@pushrocks/smartbucket": "^2.0.2",
"@pushrocks/smartfile": "^10.0.4",
2022-04-14 08:36:24 +00:00
"@pushrocks/smartpath": "^5.0.5",
2021-12-18 00:41:50 +00:00
"@types/s3rver": "^3.7.0",
"s3rver": "^3.7.1"
2024-04-14 16:16:08 +00:00
},
"keywords": [
"S3 Mock Server",
"Local S3",
"S3 Testing",
"Node.js",
"TypeScript",
"Local Development",
"Cloud Storage Simulation",
"File Storage",
"AWS S3 Compatibility",
"Development Tool"
2024-05-29 12:16:00 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smarts3",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smarts3.git"
}
2023-07-10 08:17:59 +00:00
}