n8n-nodes-sunrise-sunset
Version:
n8n node to work with the Sunrise-Sunset API
60 lines (59 loc) • 1.68 kB
JSON
{
"name": "n8n-nodes-sunrise-sunset",
"version": "0.1.2",
"description": "n8n node to work with the Sunrise-Sunset API",
"keywords": [
"n8n-community-node-package",
"n8n",
"node",
"sunrise",
"sunset",
"twilight",
"geographical",
"time"
],
"license": "MIT",
"homepage": "https://github.com/kingston223/n8n-nodes-sunrise-sunset",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kingston223/n8n-nodes-sunrise-sunset.git"
},
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint \"nodes/**/*.ts\"",
"lintfix": "eslint 'nodes/**/*.ts' --fix"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [],
"nodes": [
"dist/nodes/SunriseSunsetTrigger/SunriseSunsetTrigger.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.19.87",
"@types/request-promise-native": "~1.0.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"eslint-plugin-n8n-nodes-base": "^1.13.1",
"gulp": "^4.0.2",
"n8n-core": "^1.1.0",
"n8n-workflow": "^1.1.0",
"prettier": "^2.8.8",
"typescript": "~5.1.3"
},
"dependencies": {
"moment-timezone": "^0.5.43"
}
}