Files
testcontainers/deno.json
2024-07-19 20:07:34 +02:00

43 lines
863 B
JSON

{
"name": "@valkyr/testcontainers",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./postgres": "./containers/postgres.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/async": "jsr:@std/async@1.0.0",
"@std/net": "jsr:@std/net@0.224.5",
"@std/testing": "jsr:@std/testing@0.225.3",
"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"
}
}