UNPKG

n8n-nodes-exchangerate-api

Version:
63 lines (62 loc) 1.73 kB
{ "name": "n8n-nodes-exchangerate-api", "version": "1.0.0", "description": "n8n community node for the Exchange Rate API", "keywords": [ "n8n-community-node-package", "n8n", "exchange-rate", "currency", "conversion" ], "license": "MIT", "homepage": "https://github.com/msoukhomlinov/n8n-nodes-exchangerate-api", "author": { "name": "Max Soukhomlinov", "email": "maxs@intellectit.com.au" }, "repository": { "type": "git", "url": "git+https://github.com/msoukhomlinov/n8n-nodes-exchangerate-api.git" }, "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier --write . --ignore-path .gitignore", "lint": "eslint . --ignore-path .gitignore", "lintfix": "eslint . --fix --ignore-path .gitignore", "prepublishOnly": "npm run build && eslint src --ext .ts" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/ExchangeRateCredentialsApi.credentials.js" ], "nodes": [ "dist/nodes/ExchangeRateAPI/ExchangeRateAPI.node.js" ] }, "devDependencies": { "@types/express": "^4.17.18", "@types/request-promise-native": "^1.0.19", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "eslint": "^8.51.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-n8n-nodes-base": "^1.16.1", "eslint-plugin-prettier": "^5.2.6", "gulp": "^4.0.2", "n8n-workflow": "^1.4.0", "prettier": "^3.0.3", "typescript": "~5.2.2" }, "dependencies": { "currency-codes": "^2.2.0", "request": "^2.88.2", "request-promise-native": "^1.0.9" } }