UNPKG

coordinate-sanitizer

Version:

Flexible coordinate parser and sanitizer for astronomical coordinates. Handles various coordinate formats and converts them to standardized formats.

68 lines (67 loc) 1.78 kB
{ "name": "coordinate-sanitizer", "version": "1.0.1", "description": "Flexible coordinate parser and sanitizer for astronomical coordinates. Handles various coordinate formats and converts them to standardized formats.", "main": "src/index.js", "module": "src/index.js", "types": "src/index.d.ts", "exports": { ".": { "import": "./src/index.js", "require": "./src/index.js", "types": "./src/index.d.ts" } }, "scripts": { "test": "node test/test.js", "test:watch": "nodemon test/test.js", "example": "node examples/basic-usage.js", "lint": "echo 'Linting...' && echo 'No linter configured yet'", "build": "echo 'No build step required for pure ES6 modules'", "prepublishOnly": "npm test", "version": "npm test && git add -A", "postversion": "git push && git push --tags" }, "keywords": [ "astronomy", "coordinates", "parser", "sanitizer", "ra", "dec", "celestial", "aladin", "voyager", "telescope", "coordinate-conversion", "hms", "dms", "decimal-degrees" ], "author": { "name": "Francesco di Biase", "email": "fran.dibiase@gmail.com", "url": "https://github.com/Francescodib" }, "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Francescodib/coordinate-sanitizer.git" }, "bugs": { "url": "https://github.com/Francescodib/coordinate-sanitizer/issues" }, "homepage": "https://github.com/Francescodib/coordinate-sanitizer#readme", "files": [ "src/", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=14.0.0" }, "devDependencies": { "nodemon": "^3.0.0" } }