UNPKG

@mapbox/mapbox-gl-geocoder

Version:
79 lines (78 loc) 2.21 kB
{ "name": "@mapbox/mapbox-gl-geocoder", "version": "5.1.0", "description": "A geocoder control for Mapbox GL JS", "main": "lib/index.js", "unpkg": "dist/mapbox-gl-geocoder.min.js", "style": "lib/mapbox-gl-geocoder.css", "scripts": { "start": "budo debug/index.js --dir debug --live -- -t brfs ", "prepublish": "NODE_ENV=production && mkdir -p dist && browserify lib/index.js --transform [ babelify --global ] --standalone MapboxGeocoder | uglifyjs -c -m > dist/mapbox-gl-geocoder.min.js && cp lib/mapbox-gl-geocoder.css dist/", "test": "browserify -t envify test/index.js test/events.test.js test/utils.test.js | smokestack -b firefox | tap-status | tap-color", "docs": "documentation build lib/index.js --format=md > API.md", "pretest": "npm run lint", "lint": "eslint lib test", "precommit": "lint-staged" }, "files": [ "lib", "dist" ], "repository": { "type": "git", "url": "git+ssh://git@github.com/mapbox/mapbox-gl-geocoder.git" }, "engines": { "node": ">=6" }, "keywords": [ "geocoder", "osm", "gl" ], "author": "Mapbox", "license": "ISC", "bugs": { "url": "https://github.com/mapbox/mapbox-gl-geocoder/issues" }, "homepage": "https://github.com/mapbox/mapbox-gl-geocoder#readme", "devDependencies": { "@babel/core": "^7.16.12", "@babel/preset-env": "^7.16.11", "babelify": "^10.0.0", "brfs": "^2.0.2", "browserify": "^16.2.3", "budo": "^11.6.1", "documentation": "^14.0.0", "envify": "^3.4.1", "eslint": "^4.18.2", "husky": "^1.3.1", "insert-css": "2.0.0", "json-schema": "^0.4.0", "lint-staged": "^13.0.3", "lodash.once": "^4.0.0", "mapbox-gl": "^3.13.0", "minimist": "^1.2.6", "sinon": "^7.2.7", "smokestack": "^3.6.0", "tap-color": "^1.1.0", "tap-status": "^1.0.1", "tape": "^4.10.1", "uglify-js": "^2.8.29" }, "dependencies": { "@mapbox/mapbox-sdk": "^0.16.1", "events": "^3.3.0", "lodash.debounce": "^4.0.6", "nanoid": "^3.1.31", "subtag": "^0.5.0", "suggestions": "^1.6.0", "xtend": "^4.0.1" }, "lint-staged": { "*.js": [ "eslint", "git add" ] } }