Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
"prepare": "husky",
"git:pre-commit": "npm run git:lint-staged && npm run git:test-staged",
"git:commit-msg": "commitlint --config commitlint.config.cjs --edit",
"git:lint-staged": "npm run test:lint",
"git:lint-staged": "npm run test:lint:staged",
"git:unit-staged": "npm run test:unit",
"git:test-staged": "npm run git:unit-staged",
"lint": "biome check --write --no-errors-on-unmatched",
Expand All @@ -223,7 +223,8 @@
"test:sast:semgrep": "semgrep scan --config auto",
"test:sast:trivy": "trivy fs --scanners vuln,license --include-dev-deps --ignored-licenses 0BSD,Apache-2.0,BSD-1-Clause,BSD-2-Clause,BSD-3-Clause,CC0-1.0,CC-BY-4.0,ISC,MIT,Python-2.0 --exit-code 1 --disable-telemetry .",
"test:sast:trufflehog": "trufflehog filesystem --only-verified --log-level=-1 ./",
"test:lint": "biome check --staged --no-errors-on-unmatched",
"test:lint": "biome ci --no-errors-on-unmatched",
"test:lint:staged": "biome check --staged --no-errors-on-unmatched",
"test:unit": "node --experimental-test-module-mocks --test --test-force-exit --experimental-test-coverage --test-coverage-lines=95 --test-coverage-branches=90 --test-coverage-functions=95 --test-coverage-exclude=certificates/** --test-coverage-exclude=bin/** --test-coverage-exclude=**/*.cjs --test-coverage-exclude=**/*.mjs",
"test:types": "tstyche",
"test:perf": "node --test --test-concurrency=1 ./**/*.perf.js",
Expand Down
Loading