feat(ci): Migrate CI/CD workflow from GitLab CI to Gitea CI

This commit is contained in:
2024-10-26 14:14:41 +02:00
parent c931a0459a
commit 1a1ceba76d
15 changed files with 3497 additions and 19083 deletions

View File

@@ -2,7 +2,7 @@
"name": "@push.rocks/smarts3",
"version": "2.1.1",
"private": false,
"description": "Creates an S3 endpoint that maps to a local directory for testing and local development.",
"description": "A Node.js TypeScript package to create a local S3 endpoint for simulating AWS S3 operations using mapped local directories for development and testing purposes.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
@@ -10,13 +10,15 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)"
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.6",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"@git.zone/tsbuild": "^2.1.63",
"@git.zone/tsbundle": "^2.0.6",
"@git.zone/tsrun": "^1.2.49",
"@git.zone/tstest": "^1.0.72",
"@push.rocks/tapbundle": "^5.0.4",
"@types/node": "^18.6.2"
},
"browserslist": [
@@ -35,27 +37,36 @@
"readme.md"
],
"dependencies": {
"@pushrocks/smartbucket": "^2.0.2",
"@pushrocks/smartfile": "^10.0.4",
"@pushrocks/smartpath": "^5.0.5",
"@push.rocks/smartbucket": "^2.0.2",
"@push.rocks/smartfile": "^10.0.4",
"@push.rocks/smartpath": "^5.0.5",
"@types/s3rver": "^3.7.0",
"s3rver": "^3.7.1"
},
"keywords": [
"S3 Mock Server",
"Local S3",
"S3 Testing",
"Node.js",
"TypeScript",
"Local Development",
"Cloud Storage Simulation",
"Testing",
"Cloud Storage",
"File Storage",
"AWS S3 Compatibility",
"Development Tool"
"Development Tool",
"S3 Endpoint",
"S3 Simulation",
"Bucket Management",
"File Upload",
"CI/CD Integration",
"Developer Onboarding"
],
"homepage": "https://code.foss.global/push.rocks/smarts3",
"homepage": "https://code.foss.global/push.rocks/smarts3#readme",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smarts3.git"
"url": "git+https://code.foss.global/push.rocks/smarts3.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smarts3/issues"
}
}