-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add hpke/core as a core HPKE module which has no dependencies.
- Loading branch information
Showing
27 changed files
with
2,529 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"imports": { | ||
"testing/": "https://deno.land/[email protected]/testing/", | ||
"dnt": "https://deno.land/x/[email protected]/mod.ts" | ||
}, | ||
"fmt": { | ||
"include": [ | ||
"README.md", | ||
"deno.json", | ||
"dnt.ts", | ||
"mod.ts", | ||
"src/", | ||
"test/" | ||
], | ||
"exclude": [ | ||
"test/runtimes/bun", | ||
"test/runtimes/browsers/node_modules", | ||
"test/runtimes/cloudflare" | ||
] | ||
}, | ||
"lint": { | ||
"include": ["mod.ts", "src/", "test/"], | ||
"exclude": [ | ||
"test/runtimes/bun", | ||
"test/runtimes/browsers/node_modules", | ||
"test/runtimes/cloudflare" | ||
] | ||
}, | ||
"tasks": { | ||
"test": "deno fmt && deno lint && deno test test -A --fail-fast --doc --coverage=coverage --parallel --allow-read", | ||
"cov": "deno coverage ./coverage --lcov --exclude='test'", | ||
"dnt": "deno run -A dnt.ts $(git describe --tags $(git rev-list --tags --max-count=1))", | ||
"minify": "esbuild npm/esm/core/mod.js --bundle --format=esm --minify" | ||
} | ||
} |
Oops, something went wrong.