BEACON

← candidates

npm n8n @2.26.8

score
0.7 high
flagged 2026-06-22 06:59
signals by category
topology 2

maintainers added:

package profile →

Signals fired

signalweightrationale
topology
dist_tag_anomaly 0.5 dist-tags.latest=2.26.8 but max published is 2.27.3
shared_repo_different_publisher 0.9 repo 'git+https://github.com/n8n-io/n8n.git' also claimed by 10 package(s) under different publishers: ['npm/@n8n/codemirror-lang-html', 'npm/@n8n/config', 'npm/@n8n/imap'] ...

Prior profile (what it deviated from)

{
  "had_install_script": false,
  "maintainers": [
    "jan_n8n_io",
    "n8n-matsuuu",
    "cornelius_n8n_io",
    "tomin8n"
  ],
  "versions": 1037
}

Evidence (package doc at flag time)

{
  "dependencies_count": 135,
  "dist": {
    "integrity": "sha512-Ffb3GerbsAFuAYJn9vLxQ8NTp+Ztxz2KmWkmEN/mfm3gIt+UnStYuEhOFj+1LOw+WxwT4gojzklljpT4ePsboA==",
    "tarball": "https://registry.npmjs.org/n8n/-/n8n-2.26.8.tgz",
    "unpackedSize": 15572495
  },
  "dist-tags": {
    "beta": "2.27.3",
    "latest": "2.26.8",
    "next": "2.27.3",
    "rc": "2.26.9",
    "stable": "2.26.8"
  },
  "latest_version": "2.26.8",
  "maintainers": [
    {
      "email": "jan@n8n.io",
      "name": "jan_n8n_io"
    },
    {
      "email": "matias.huhta@n8n.io",
      "name": "n8n-matsuuu"
    },
    {
      "email": "cornelius@n8n.io",
      "name": "cornelius_n8n_io"
    },
    {
      "email": "tomi+npm@n8n.io",
      "name": "tomin8n"
    }
  ],
  "num_versions": 1038,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/n8n-io/n8n.git"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && pnpm run build:data && pnpm run build:agent-library",
    "build:agent-library": "node scripts/bundle-agent-library.mjs",
    "build:data": "node scripts/build.mjs",
    "build:unchecked": "tsc -p tsconfig.build.json --noCheck && tsc-alias -p tsconfig.build.json && pnpm run build:data && pnpm run build:agent-library",
    "buildAndDev": "pnpm run build && pnpm run dev",
    "clean": "rimraf dist .turbo",
    "dev": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon --delay 1\"",
    "dev:webhook": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon webhook\"",
    "dev:worker": "concurrently -k -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold\" \"npm run watch\" \"nodemon worker\"",
    "format": "biome format --write .",
    "format:check": "biome ci .",
    "lint": "eslint . --quiet",
    "lint:fix": "eslint . --fix",
    "start": "node ../../scripts/os-normalize.mjs --dir bin n8n",
    "test": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest",
    "test:dev": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest --watch",
    "test:dev:win": "set N8N_LOG_LEVEL=silent&& set DB_SQLITE_POOL_SIZE=4&& set DB_TYPE=sqlite&& jest --watch",
    "test:integration": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest --config=jest.config.integration.js",
    "test:integration:changed": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite janitor test-scoped --runner=jest --jest-variant=integration -- --config=jest.config.integration.js",
    "test:mariadb": "echo true",
    "test:mariadb:win": "echo true",
    "test:postgres": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ jest --config=jest.config.integration.js --no-coverage",
    "test:postgres:integration:tc": "N8N_LOG_LEVEL=silent jest --config=jest.config.integration.testcontainers.js --testPathIgnorePatterns=/test/migration/",
    "test:postgres:migrations": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ jest --config=jest.config.migration.js --no-coverage",
    "test:postgres:migrations:tc": "N8N_LOG_LEVEL=silent DB_TYPE=postgresdb DB_POSTGRESDB_SCHEMA=alt_schema DB_TABLE_PREFIX=test_ jest --config=jest.config.migration.testcontainers.js --no-coverage",
    "test:postgres:tc": "N8N_LOG_LEVEL=silent jest --config=jest.config.integration.testcontainers.js --no-coverage",
    "test:postgres:win": "set N8N_LOG_LEVEL=silent&& set DB_TYPE=postgresdb&& set DB_POSTGRESDB_SCHEMA=alt_schema&& set DB_TABLE_PREFIX=test_&& jest --config=jest.config.integration.js --no-coverage",
    "test:sqlite": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest --config=jest.config.integration.js --no-coverage",
    "test:sqlite:migrations": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest --config=jest.config.migration.js --no-coverage",
    "test:sqlite:migrations:tc": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest --config=jest.config.migration.testcontainers.js --no-coverage",
    "test:sqlite:win": "set N8N_LOG_LEVEL=silent&& set DB_SQLITE_POOL_SIZE=4&& set DB_TYPE=sqlite&& jest --config=jest.config.integration.js",
    "test:unit": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite jest --config=jest.config.unit.js",
    "test:unit:changed": "N8N_LOG_LEVEL=silent DB_SQLITE_POOL_SIZE=4 DB_TYPE=sqlite janitor test-scoped --runner=jest -- --config=jest.config.unit.js",
    "test:win": "set N8N_LOG_LEVEL=silent&& set DB_SQLITE_POOL_SIZE=4&& set DB_TYPE=sqlite&& jest",
    "typecheck": "tsc --noEmit",
    "watch": "tsc-watch -p tsconfig.build.json --onCompilationComplete \"tsc-alias -p tsconfig.build.json\""
  },
  "signal_details": {
    "dist_tag_anomaly": "dist-tags.latest=2.26.8 but max published is 2.27.3",
    "shared_repo_different_publisher": "repo 'git+https://github.com/n8n-io/n8n.git' also claimed by 10 package(s) under different publishers: ['npm/@n8n/codemirror-lang-html', 'npm/@n8n/config', 'npm/@n8n/imap'] ..."
  },
  "time": {
    "created": "2019-04-24T23:48:19.822Z",
    "modified": "2026-06-22T10:40:45.240Z"
  }
}