1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/specs/publish/byonm_dep/deno.jsonc

12 lines
311 B
Text
Raw Permalink Normal View History

{
"name": "@scope/package",
"version": "0.0.0",
"exports": "./mod.ts",
"publish": {
// this was previously causing issues because it would cause
// external modules in the node_modules directory to be ignored
"include": ["LICENSE", "mod.ts"]
},
"unstable": ["byonm", "sloppy-imports"]
}