UNPKG

geography-markup-language

Version:
52 lines (51 loc) 1.64 kB
{ "name": "geography-markup-language", "version": "0.2.0", "description": "Parse OGC Geography Markup Language in Pure JavaScript", "type": "module", "files": [ "dist/", "enums/", "find/", "geometry/", "parse/", "utils/", "index.js" ], "main": "./dist/geography-markup-language.cjs", "jsdelivr": "./dist/geography-markup-language.min.js", "unpkg": "./dist/geography-markup-language.min.js", "scripts": { "build": "npm run build:browser && npm run build:node", "build:browser": "esbuild index.js --bundle --keep-names --minify --outfile=./dist/geography-markup-language.min.js --platform=browser --sourcemap", "build:node": "esbuild index.js --bundle --outfile=./dist/geography-markup-language.cjs --platform=node", "format": "npx prettier --arrow-parens=avoid --print-width=200 --trailing-comma=none --write *.js */*.js */*/*.js", "test": "node ./test/test.find.js && node ./test/test.js && node ./test/test.geometry.js && node ./test/test.examples.js" }, "repository": { "type": "git", "url": "git+https://github.com/DanielJDufour/geography-markup-language.git" }, "keywords": [ "geography", "geospatial", "gis", "gml", "ogc", "xml" ], "author": "Daniel J. Dufour", "license": "CC0-1.0", "bugs": { "url": "https://github.com/DanielJDufour/geography-markup-language/issues" }, "homepage": "https://github.com/DanielJDufour/geography-markup-language#readme", "devDependencies": { "esbuild": "^0.18.11", "flug": "^2.6.0" }, "dependencies": { "bbox-fns": "^0.6.0", "xml-utils": "^1.3.0" } }