@andreasnicolaou/overpass-client
Version:
A wrapper for the Overpass API to query OpenStreetMap data.
100 lines (99 loc) • 2.47 kB
JSON
{
"name": "@andreasnicolaou/overpass-client",
"version": "1.4.1",
"description": "A wrapper for the Overpass API to query OpenStreetMap data.",
"main": "dist/index.js",
"private": false,
"types": "dist/types/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"test:ci": "cross-env JEST_JUNIT_CLASSNAME=\"{filepath}\" jest --reporters=default --reporters=jest-junit",
"test:bundle": "npx bundlewatch"
},
"repository": {
"type": "git",
"url": "https://github.com/andreasnicolaou/overpass-client.git"
},
"bugs": {
"url": "https://github.com/andreasnicolaou/overpass-client/issues"
},
"author": "Andreas Nicolaou <anicolaou66@gmail.com>",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.(ts)$": [
"ts-jest"
]
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"bundlewatch": {
"files": [
{
"path": "dist/index.js",
"maxSize": "1kB",
"compression": "gzip"
},
{
"path": "dist/client.js",
"maxSize": "3kB",
"compression": "gzip"
},
{
"path": "dist/errors.js",
"maxSize": "300B",
"compression": "gzip"
}
]
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"axios-mock-adapter": "^2.1.0",
"bundlewatch": "^0.4.1",
"cross-env": "^10.1.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"@eslint/js": "^10.0.1",
"@eslint/eslintrc": "^3.3.5",
"globals": "^17.4.0",
"jest": "^30.2.0",
"jest-junit": "^16.0.0",
"prettier": "3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"keywords": [
"overpass",
"openstreetmap",
"api",
"osm",
"geospatial",
"data-query",
"map",
"andreasnicolaou"
],
"dependencies": {
"@types/node": "^25.4.0",
"axios": "^1.13.6",
"lru-cache": "^11.2.6",
"rxjs": "^7.8.2"
}
}