n8n-nodes-api-key-validator
Version:
N8N Community Node for validating API keys, tokens and sensitive authentication data
69 lines (68 loc) • 1.97 kB
JSON
{
"name": "n8n-nodes-api-key-validator",
"version": "1.1.9",
"description": "N8N Community Node for validating API keys, tokens and sensitive authentication data",
"keywords": [
"n8n-community-node-package",
"security",
"validation",
"api-key",
"authentication",
"n8n",
"workflow",
"automation"
],
"license": "MIT",
"homepage": "https://github.com/kiro-dev/n8n-nodes-api-key-validator#readme",
"author": {
"name": "Kiro Dev",
"email": "dev@kiro.ai"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiro-dev/n8n-nodes-api-key-validator.git"
},
"bugs": {
"url": "https://github.com/kiro-dev/n8n-nodes-api-key-validator/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish --access public",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"pre-publish-check": "node scripts/pre-publish-check.js"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ApiKeyCredentials.credentials.js"
],
"nodes": [
"dist/nodes/SecurityValidator/SecurityValidator.node.js"
]
},
"devDependencies": {
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.42.0",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-workflow": "^1.0.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}