UNPKG

n8n-nodes-html-validation

Version:
63 lines (62 loc) 1.47 kB
{ "name": "n8n-nodes-html-validation", "version": "0.1.2", "description": "HTML validation node for n8n", "keywords": [ "n8n-community-node-package", "html-validation", "html-validate", "content-validation", "validation", "html", "htmlvalidate", "content" ], "license": "MIT", "homepage": "", "author": { "name": "speedyweb", "email": "biuro@speedyweb.pl" }, "repository": { "type": "git", "url": "https://github.com/SpeedyWebHub/n8n-nodes-html-validation" }, "engines": { "node": ">=20.15" }, "main": "index.js", "scripts": { "build": "npx rimraf dist && tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes --write", "lint": "eslint nodes package.json", "lintfix": "eslint nodes package.json --fix", "prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes package.json" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [], "nodes": [ "dist/nodes/HtmlValidation/HtmlValidation.node.js" ] }, "dependencies": { "html-validate": "^9.7.1", "languagedetect": "^2.0.0" }, "devDependencies": { "@typescript-eslint/parser": "~8.32.0", "eslint": "^8.57.0", "eslint-plugin-n8n-nodes-base": "^1.16.3", "gulp": "^5.0.0", "prettier": "^3.5.3", "typescript": "^5.8.2" }, "peerDependencies": { "n8n-workflow": "*" } }