n8n-nodes-clean-data
Version:
A custom n8n node to clean data using Recursive Feature Elimination (RFE) powered by Python.
57 lines (56 loc) • 1.33 kB
JSON
{
"name": "n8n-nodes-clean-data",
"version": "0.1.4",
"description": "A custom n8n node to clean data using Recursive Feature Elimination (RFE) powered by Python.",
"keywords": [
"n8n",
"custom-node",
"clean-data",
"data-cleaning",
"RFE",
"feature-selection",
"python",
"n8n-community-node-package"
],
"license": "MIT",
"author": {
"name": "HutechFoss",
"email": "tuananh161224@gmail.com"
},
"main": "index.js",
"scripts": {
"build": "tsc && copyfiles -u 1 model/**/* dist/model",
"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",
"model"
],
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/CleanData/CleanData.node.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pot030321/Custom_Node_List/tree/cleandata"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/parser": "~5.45",
"copyfiles": "^2.4.1",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}