56 rindas
1.1 KiB
JSON

{
"name": "node-red-contrib-suncron",
"version": "1.6.2",
"description": "A Node-RED node that triggers configurable outgoing messages based on the position of the sun",
"main": "index.js",
"author": "Cornelius Suermann",
"license": "MIT",
"keywords": [
"node-red",
"smart home",
"sun",
"sunset",
"sunrise",
"dusk",
"noon",
"cron",
"timer",
"timer clock"
],
"repository": {
"type": "git",
"url": "https://github.com/csuermann/node-red-contrib-suncron"
},
"scripts": {
"test": "mocha \"test/**/*_spec.js\""
},
"node-red": {
"nodes": {
"suncron": "suncron.js"
}
},
"dependencies": {
"cron": "^1.8.2",
"dayjs": "^1.10.5",
"suncalc": "^1.8.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"node-red": "^1.2.9",
"node-red-node-test-helper": "^0.2.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"release": {
"branches": [
"master",
"next"
]
}
}