Skip to main content
Module

x/molt/deno.json

Update dependencies the Deno way
Go to Latest
File
{ "tasks": { "cache": "deno cache ./lib/*/*.ts --lock", "lock": "deno task -q cache --lock-write && git add deno.lock", "check": "deno check ./*.ts ./lib/**/*.ts ./test/specs/*.ts", "test": "deno test -A --no-check", "test:update": "deno task -q test -- --update", "dev": "deno fmt && deno lint && deno task lock && deno task -q check && deno task -q test ./lib/*_test.ts ./test/specs/*_test.ts", "run": "deno run --allow-env --allow-read --allow-net --allow-write=. --allow-run=git,deno cli.ts", "update": "deno run --allow-env --allow-read --allow-write --allow-net=deno.land,registry.npmjs.org --allow-run=git,deno ./cli.ts ./lib/*/*.ts --ignore import_map", "update:commit": "deno task -q update --commit --pre-commit=fmt,lock --prefix 'build(deps):'" }, "fmt": { "exclude": [ "CHANGELOG.md" ] }, "lint": { "exclude": [ "test/data", "test/snapshots" ], "rules": { "include": [ "no-sync-fn-in-async-fn" ] } }}