nano-service/deno.json

17 lines
423 B
JSON
Raw Normal View History

2024-01-04 21:20:47 +01:00
{
"imports": {
"nats": "npm:nats",
"zod": "npm:zod",
"std/": "https://deno.land/std@0.211.0/",
2024-01-04 21:20:47 +01:00
"dnt": "https://deno.land/x/dnt@0.39.0/mod.ts"
},
"tasks": {
2024-01-04 23:08:27 +01:00
"test": "deno test --allow-net --allow-env --parallel",
2024-01-04 21:33:53 +01:00
"build": "deno run -A scripts/build_npm.ts 0.1.0",
"publish": "cd npm && npm publish"
2024-01-04 23:01:46 +01:00
},
"lint": {
"include": ["src/"]
2024-01-04 21:20:47 +01:00
}
}