Skip to main content
Module

x/oson/deno.jsonc

oson structured object notation
Go to Latest
File
{ "tasks": { "dev": "deno fmt && deno lint && deno task test && deno task check", "test": "bash -c 'echo *.test.ts' | xargs deno test", "check": "deno cache --check=all mod.ts", "coverage": "deno task test --coverage=./test/cov_profile && deno coverage --lcov --output=./coverage.lcov ./test/cov_profile", "report": "genhtml ./coverage.lcov --output-directory ./test/coverage/ && echo 'Point your browser to test/coverage/index.html to see the test coverage report.'", "build": "deno run --allow-run --allow-net --allow-env --allow-read --allow-write build.ts", "release": "[ -f npm/package.json ] && git push --tags && cd npm && npm publish || echo Missing build output!" }, "lint": { "files": { "exclude": ["npm", "arson"] } }}