std/deno.json

38 lines
1.9 KiB
JSON
Raw Normal View History

{
"compilerOptions": {
"strict": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true
},
2023-07-04 05:05:54 +00:00
"imports": {
"https://deno.land/std@$STD_VERSION/": "./",
"deno_graph": "https://deno.land/x/deno_graph@0.60.0/mod.ts",
"deno_doc": "https://deno.land/x/deno_doc@0.73.0/mod.ts",
"npm:/typescript": "npm:typescript@5.2.2",
"automation/": "https://raw.githubusercontent.com/denoland/automation/0.10.0/"
2022-03-17 16:31:32 +00:00
},
"tasks": {
2023-12-15 19:42:09 +00:00
"test": "deno test --doc --unstable --allow-all --parallel --coverage --trace-ops",
"test:browser": "git grep --name-only \"This module is browser compatible.\" | grep -v deno.json | grep -v .github/workflows | grep -v _tools | xargs deno check --config browser-compat.tsconfig.json",
"fmt:licence-headers": "deno run --allow-read --allow-write ./_tools/check_licence.ts",
"lint:deprecations": "deno run --allow-read --allow-net --allow-env=HOME ./_tools/check_deprecation.ts",
"lint:doc-imports": "deno run --allow-env --allow-read ./_tools/check_doc_imports.ts",
"lint:circular": "deno run --allow-env --allow-read --allow-net=deno.land ./_tools/check_circular_submodule_dependencies.ts",
"lint:tools-types": "deno check _tools/*.ts",
"lint": "deno lint && deno task fmt:licence-headers --check && deno task lint:deprecations && deno task lint:doc-imports && deno task lint:circular && deno task lint:tools-types",
"typos": "typos -c ./.github/workflows/typos.toml",
"build:crypto": "deno task --cwd crypto/_wasm wasmbuild",
chore(deps): bump the dependencies group in /crypto/_wasm with 6 updates (#3866) * chore(deps): bump the dependencies group in /crypto/_wasm with 6 updates Bumps the dependencies group in /crypto/_wasm with 6 updates: | Package | From | To | | --- | --- | --- | | [blake2](https://github.com/RustCrypto/hashes) | `0.10.4` | `0.10.6` | | [blake3](https://github.com/BLAKE3-team/BLAKE3) | `1.3.1` | `1.5.0` | | [digest](https://github.com/RustCrypto/traits) | `0.10.5` | `0.10.7` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.65` | `0.3.66` | | [md-5](https://github.com/RustCrypto/hashes) | `0.10.5` | `0.10.6` | | [sha2](https://github.com/RustCrypto/hashes) | `0.10.6` | `0.10.8` | Updates `blake2` from 0.10.4 to 0.10.6 - [Commits](https://github.com/RustCrypto/hashes/compare/blake2-v0.10.4...blake2-v0.10.6) Updates `blake3` from 1.3.1 to 1.5.0 - [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases) - [Commits](https://github.com/BLAKE3-team/BLAKE3/compare/1.3.1...1.5.0) Updates `digest` from 0.10.5 to 0.10.7 - [Commits](https://github.com/RustCrypto/traits/compare/digest-v0.10.5...digest-v0.10.7) Updates `js-sys` from 0.3.65 to 0.3.66 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `md-5` from 0.10.5 to 0.10.6 - [Commits](https://github.com/RustCrypto/hashes/compare/md-5-v0.10.5...md-5-v0.10.6) Updates `sha2` from 0.10.6 to 0.10.8 - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.6...sha2-v0.10.8) --- updated-dependencies: - dependency-name: blake2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: blake3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: digest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: js-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: md-5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: sha2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * upgrade wasmbuild@0.15.3 and wasm-bindgen@0.2.89 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
2023-11-29 00:42:00 +00:00
"wasmbuild": "deno run --unstable -A https://deno.land/x/wasmbuild@0.15.3/main.ts --js-ext mjs --sync",
2023-12-15 19:42:09 +00:00
"cov:gen": "deno coverage coverage --lcov --output=cov.lcov",
"cov:view": "deno coverage --html coverage",
2023-11-02 01:03:55 +00:00
"ok": "deno task lint && deno fmt --check && deno task test:browser && deno task test"
2023-07-04 05:05:54 +00:00
},
"exclude": [
".git",
"crypto/_wasm/target",
"cov",
"jsonc/testdata",
"front_matter/testdata"
2023-07-04 05:05:54 +00:00
]
}