Files
testcontainers/deno.json
2024-07-19 19:26:57 +02:00

42 lines
823 B
JSON

{
"name": "@valkyr/testcontainers",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./postgres": "./containers/postgres.ts"
},
"imports": {
"std/": "https://deno.land/std@0.224.0/",
"delay": "npm:delay@6.0.0",
"port": "https://deno.land/x/getport@v2.1.2/mod.ts",
"postgres": "npm:postgres@3.4.4"
},
"exclude": [
".vscode"
],
"lint": {
"rules": {
"exclude": [
"no-explicit-any",
"require-await"
]
}
},
"fmt": {
"lineWidth": 120
},
"publish": {
"exclude": [
".eslint",
".github",
".vscode",
".gitignore",
"tests"
]
},
"tasks": {
"lint": "deno lint && npx eslint -c .eslint/eslint.config.mjs .",
"test": "export ENVIRONMENT=testing && deno test --allow-all --unstable-ffi"
}
}