42 lines
800 B
JSON
42 lines
800 B
JSON
{
|
|
"name": "@valkyr/testcontainers",
|
|
"version": "1.0.2",
|
|
"exports": {
|
|
".": "./mod.ts",
|
|
"./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
|
|
},
|
|
"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"
|
|
}
|
|
}
|