first commit

This commit is contained in:
rafaeldpsilva
2025-12-10 12:32:12 +00:00
commit adbbf6bf50
3442 changed files with 2725681 additions and 0 deletions

53
web-app/node_modules/suncalc/package.json generated vendored Normal file
View File

@@ -0,0 +1,53 @@
{
"name": "suncalc",
"version": "1.9.0",
"description": "A tiny JavaScript library for calculating sun/moon positions and phases.",
"homepage": "https://github.com/mourner/suncalc",
"keywords": [
"sun",
"astronomy",
"math",
"calculation",
"sunrise",
"sunset",
"twilight",
"moon",
"illumination"
],
"author": "Vladimir Agafonkin",
"repository": {
"type": "git",
"url": "git://github.com/mourner/suncalc.git"
},
"main": "suncalc.js",
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-mourner": "^2.0.1",
"tape": "^5.5.0"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"indent": 0,
"array-bracket-spacing": 0,
"strict": 0,
"brace-style": 0
},
"env": {
"amd": true
}
},
"files": [
"suncalc.js"
],
"scripts": {
"pretest": "eslint suncalc.js test.js",
"test": "node test.js",
"prepublishOnly": "npm test"
},
"jshintConfig": {
"quotmark": "single",
"trailing": true,
"unused": true
}
}