Skip to main content
Module

x/molt/deno.json

A Deno module to update dependencies with deno_graph
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": "deno test -A --no-check", "dev": "deno fmt && deno lint && deno task lock && deno task -q check && deno task -q test", "install": "deno install -f --name molt --allow-env --allow-read --allow-net --allow-write=. --allow-run=git,deno cli.ts", "run:molt": "deno run --allow-env --allow-read --allow-write --allow-net=deno.land,registry.npmjs.org --allow-run=git,deno ./cli.ts", "update": "deno task -q run:molt check ./lib/**/*.ts", "update:commit": "deno task -q run:molt update --commit --pre-commit=lock,test ./lib/**/*.ts" }, "fmt": { "exclude": ["CHANGELOG.md"] }, "lint": { "exclude": ["test/"], "rules": { "include": [ "no-sync-fn-in-async-fn" ] } }}