UNPKG

n8n-nodes-netbox

Version:

n8n community node for NetBox API integration with comprehensive DCIM, IPAM, and data center management operations

76 lines (75 loc) 2.2 kB
{ "name": "n8n-nodes-netbox", "version": "1.2.4", "description": "n8n community node for NetBox API integration with comprehensive DCIM, IPAM, and data center management operations", "keywords": [ "n8n-community-node-package", "netbox", "dcim", "ipam", "data-center", "network-management", "infrastructure" ], "license": "MIT", "homepage": "https://github.com/harvard-university/n8n-nodes-netbox", "repository": { "type": "git", "url": "git+https://github.com/harvard-university/n8n-nodes-netbox.git" }, "engines": { "node": ">=20.15.0" }, "packageManager": "pnpm@10.2.1", "main": "index.js", "scripts": { "build": "npx rimraf dist && tsc && npm run copy:files", "copy:files": "npx copyfiles -u 1 \"nodes/**/*.{json,svg}\" dist/ && npx copyfiles -u 1 \"credentials/**/*.{json,svg}\" dist/ && cp dist/NetBox/netbox.svg dist/nodes/NetBox/ 2>/dev/null || true", "dev": "tsc --watch", "format": "prettier nodes credentials package.json --write", "lint": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" --no-error-on-unmatched-pattern", "lintfix": "eslint \"nodes/**/*.ts\" \"credentials/**/*.ts\" --fix --no-error-on-unmatched-pattern", "prepublishOnly": "npm run build && npm run lint", "test": "echo \"No tests specified\" && exit 0" }, "files": [ "dist", "README.md" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/NetBoxApi.credentials.js" ], "nodes": [ "dist/nodes/NetBox/NetBox.node.js" ] }, "devDependencies": { "@types/node": "^22.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "copyfiles": "^2.4.1", "eslint": "^8.0.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "prettier": "^3.0.0", "rimraf": "^5.0.0", "typescript": "^5.0.0" }, "dependencies": { "axios": "^1.6.0" }, "peerDependencies": { "n8n-workflow": "*" }, "author": { "name": "Harvard University", "email": "n8n@harvard.edu" }, "contributors": [ { "name": "Harvard IT Infrastructure Team", "email": "n8n@harvard.edu" } ] }