n8n-nodes-dataverse
Version:
n8n community node for communicating to dataverse
60 lines (59 loc) • 1.78 kB
JSON
{
"name": "n8n-nodes-dataverse",
"version": "0.1.1",
"description": "n8n community node for communicating to dataverse",
"keywords": [
"n8n-community-node-package",
"Dataverse",
"Dynamics 365"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Theuns Barnardt",
"email": "theuns@barnardt.co.za"
},
"repository": {
"type": "git",
"url": "https://github.com/TheunsBarnardt/CustomNodes.git"
},
"main": "index.js",
"scripts": {
"setup": "npm run build --clean && npm link && n8n",
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "pnpm build && pnpm lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/dataverseAuth.credentials.js"
],
"nodes": [
"dist/nodes/Dataverse.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/request-promise-native": "~1.0.15",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/parser": "~5.45",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"gulp": "^4.0.2",
"n8n-core": "*",
"n8n-workflow": "*",
"prettier": "^2.7.1",
"typescript": "~4.8.4"
},
"dependencies": {
"axios": "^1.7.9",
"jsonwebtoken": "^9.0.1",
"node-fetch": "^3.3.2"
}
}