UNPKG

@socradar/n8n-nodes-socradar

Version:

Production-ready n8n integration for SOCRadar Extended Threat Intelligence platform

90 lines 2.26 kB
{ "name": "@socradar/n8n-nodes-socradar", "version": "1.8.4", "description": "Production-ready n8n integration for SOCRadar Extended Threat Intelligence platform", "keywords": [ "n8n-community-node-package", "n8n", "socradar", "cybersecurity", "threat-intelligence", "incident-management", "takedown-management", "digital-footprint", "asset-management", "dark-web-monitoring", "brand-protection", "fraud-protection", "attack-surface", "security-automation" ], "license": "MIT", "homepage": "https://socradar.io", "author": { "name": "SOCRadar", "email": "info@socradar.io" }, "private": false, "engines": { "node": ">=18.10", "pnpm": ">=9.1" }, "engineStrict": true, "main": "index.js", "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md", "package.json" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/SocradarApi.credentials.js" ], "nodes": [ "dist/nodes/Socradar/Socradar.node.js" ] }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^8.26.0", "@typescript-eslint/parser": "^8.26.0", "eslint": "^8.56.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "gulp": "^4.0.2", "jest": "^29.7.0", "jest-junit": "^16.0.0", "prettier": "^3.3.2", "rimraf": "^5.0.5", "typescript": "^5.5.3" }, "dependencies": { "axios": "^1.8.1", "dotenv": "^16.4.7" }, "peerDependenciesMeta": { "n8n-workflow": { "optional": false } }, "peerDependencies": { "n8n-workflow": "*" }, "scripts": { "preinstall": "npx only-allow pnpm", "clean": "rimraf dist coverage", "build": "pnpm clean && tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint ./nodes/**/*.ts ./credentials/**/*.ts package.json", "lintfix": "eslint ./nodes/**/*.ts ./credentials/**/*.ts package.json --fix", "test": "jest --coverage", "test:watch": "jest --watch", "test:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit" } }