diff --git a/.github/workflows/codeql_analysis.yml b/.github/workflows/codeql_analysis.yml index 0198aac..d14d100 100644 --- a/.github/workflows/codeql_analysis.yml +++ b/.github/workflows/codeql_analysis.yml @@ -3,9 +3,11 @@ on: push: branches: - master + - next pull_request: branches: - master + - next jobs: analyze: name: Analyze @@ -16,14 +18,14 @@ jobs: - name: git checkout run: git checkout if: ${{ github.event_name == 'pull_request' }} - - name: prepare CodeQL - uses: github/codeql-action/init@v4 - with: - languages: javascript - name: prepare node uses: actions/setup-node@v6.1.0 with: node-version: 24.11.1 + - name: prepare CodeQL + uses: github/codeql-action/init@v4 + with: + languages: javascript - name: install run: npm ci - name: perform CodeQL analysis diff --git a/.github/workflows/update_package_lock.yml b/.github/workflows/update_package_lock.yml index 5bb2d97..2773687 100644 --- a/.github/workflows/update_package_lock.yml +++ b/.github/workflows/update_package_lock.yml @@ -18,7 +18,7 @@ jobs: - name: remove lock run: rm package-lock.json - name: install playwright - run: npx playwright install + run: npx playwright install --with-deps - name: test run: npm install-test env: diff --git a/README.md b/README.md index 79bd4b6..534f933 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@ +[![npm](https://img.shields.io/npm/v/@kronos-integeration/interceptor-message-handler.svg)](https://www.npmjs.com/package/@kronos-integeration/interceptor-message-handler) [![License](https://img.shields.io/badge/License-0BSD-blue.svg)](https://spdx.org/licenses/0BSD.html) +[![bundlejs](https://deno.bundlejs.com/?q=@kronos-integeration/interceptor-message-handler\&badge=detailed)](https://bundlejs.com/?q=@kronos-integeration/interceptor-message-handler) +[![downloads](http://img.shields.io/npm/dm/@kronos-integeration/interceptor-message-handler.svg?style=flat-square)](https://npmjs.org/package/@kronos-integeration/interceptor-message-handler) [![GitHub Issues](https://img.shields.io/github/issues/Kronos-Integration/interceptor-message-handler.svg?style=flat-square)](https://github.com/Kronos-Integration/interceptor-message-handler/issues) [![Build Status](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Factions-badge.atrox.dev%2FKronos-Integration%2Finterceptor-message-handler%2Fbadge\&style=flat)](https://actions-badge.atrox.dev/Kronos-Integration/interceptor-message-handler/goto) [![Styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier) [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) [![Known Vulnerabilities](https://snyk.io/test/github/Kronos-Integration/interceptor-message-handler/badge.svg)](https://snyk.io/test/github/Kronos-Integration/interceptor-message-handler) -[![Coverage Status](https://coveralls.io/repos/Kronos-Integration/interceptor-message-handler/badge.svg)](https://coveralls.io/github/Kronos-Integration/interceptor-message-handler) kronos-interceptor-message-handler ===== diff --git a/package.json b/package.json index 62feaf3..fe2060d 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "access": "public", "provenance": true }, + "packageManager": "npm@11.6.4+sha512.1118cab46a05a50aee6bff5b1b4fa1df18afff89d57465620a3518035026955db87c5bdf9d207b07b7487d99f2490d450cb774655ad63ec2cba7bf1d0ad25d45", "exports": { ".": "./src/message-handler-interceptor.mjs" }, @@ -22,22 +23,22 @@ "email": "markus.felten@gmx.de" } ], - "license": "BSD-2-Clause", + "license": "0BSD", "scripts": { "test": "node --run test:ava", "test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs", "cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp", - "docs": "documentation readme --section=API ./src/**/*.mjs", + "docs": "documentation readme --section=API ./src**/*.mjs", "lint": "node --run lint:docs", - "lint:docs": "documentation lint ./src/**/*.mjs" + "lint:docs": "documentation lint ./src**/*.mjs" }, "dependencies": { "@kronos-integration/interceptor": "^13.0.6", "@kronos-integration/message": "^2.2.0" }, "devDependencies": { - "ava": "^6.1.3", - "c8": "^10.1.2", + "ava": "^6.4.1", + "c8": "^10.1.3", "documentation": "^14.0.3", "esm": "^3.2.25", "loglevel-mixin": "^7.2.6", @@ -59,6 +60,5 @@ "arlac77/template-arlac77-github", "arlac77/template-kronos-component" ] - }, - "packageManager": "npm@11.6.4+sha512.1118cab46a05a50aee6bff5b1b4fa1df18afff89d57465620a3518035026955db87c5bdf9d207b07b7487d99f2490d450cb774655ad63ec2cba7bf1d0ad25d45" + } }