feat: initial commit

This commit is contained in:
2024-07-06 21:21:10 +02:00
commit 96f7c2cfe7
21 changed files with 1511 additions and 0 deletions

30
deno.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "@valkyr/testcontainers",
"version": "1.0.0-rc.1",
"exports": {
"./postgres": "./containers/postgres.ts"
},
"imports": {
"std/": "https://deno.land/std@0.224.0/",
"delay": "npm:delay@6.0.0",
"port": "npm:get-port@7.1.0",
"postgres": "npm:postgres@3.4.4"
},
"exclude": [
".vscode"
],
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"require-await"
]
}
},
"fmt": {
"lineWidth": 120
},
"tasks": {
"test": "export ENVIRONMENT=testing && deno test --allow-all --unstable-ffi"
}
}