Files
testcontainers/deno.json
2025-04-17 17:23:05 +00:00

25 lines
511 B
JSON

{
"name": "@valkyr/testcontainers",
"version": "2.0.0",
"exports": {
".": "./mod.ts",
"./mongodb": "./containers/mongodb.ts",
"./postgres": "./containers/postgres.ts"
},
"publish": {
"exclude": [
".github",
".vscode",
".gitignore",
"tests"
]
},
"tasks": {
"lint": "npx eslint -c eslint.config.mjs .",
"test": "deno test --allow-all",
"test:publish": "deno publish --dry-run",
"ncu": "npx ncu -u -p npm"
},
"nodeModulesDir": "auto"
}