astronomy-bundle
Version:
Bundle for astronomical calculations such as position of moon, sun and planets, sunrise, sunset or solar eclipses. Most of the calculations are based on Jean Meeus 'Astronomical Algorithms' book and the VSOP87 theory.
69 lines (68 loc) • 1.89 kB
JSON
{
"name": "astronomy-bundle",
"version": "7.7.7",
"description": "Bundle for astronomical calculations such as position of moon, sun and planets, sunrise, sunset or solar eclipses. Most of the calculations are based on Jean Meeus 'Astronomical Algorithms' book and the VSOP87 theory.",
"keywords": [
"astronomy",
"calculations",
"sun",
"sunrise",
"sunset",
"solar eclipse",
"moon",
"moonrise",
"moonset",
"libration",
"planets",
"mercury",
"venus",
"mars",
"jupiter",
"saturn",
"uranus",
"neptune",
"VSOP87",
"satellite",
"two line elements",
"tle"
],
"repository": "git@github.com:andrmoel/astronomy-bundle-js.git",
"author": "Andreas Moeller <andrmoel@gmail.com>",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.js",
"scripts": {
"build": "tsc",
"lint": "eslint ./src ./bin",
"lint:fix": "eslint --fix ./src ./bin",
"test": "jest ./src",
"test:coverage": "jest ./src --coverage",
"release": "standard-version --tag-prefix --commit-all",
"release:push": "git push --follow-tags",
"bin:download-besselian-elements": "ts-node ./bin/solarEclipse/downloadBesselianElements.ts"
},
"devDependencies": {
"@andrmoel/eslint-config": "^1.14.0",
"@andrmoel/eslint-config-typescript": "^1.14.0",
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"axios": "^1.6.8",
"babel-jest": "^29.7.0",
"entities": "^4.5.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"p-limit": "^5.0.0",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix && yarn test"
}
}
}