{
  "name": "geobuf",
  "version": "3.0.2",
  "description": "Compact binary encoding for geographic data",
  "main": "index.js",
  "bin": {
    "geobuf2json": "bin/geobuf2json",
    "json2geobuf": "bin/json2geobuf",
    "shp2geobuf": "bin/shp2geobuf"
  },
  "scripts": {
    "pretest": "eslint *.js test/*.js",
    "test": "tape test/*.js",
    "build-min": "mkdirp dist && browserify index.js -s geobuf | uglifyjs -c -m > dist/geobuf.js",
    "build-dev": "mkdirp dist && browserify index.js -d -s geobuf > dist/geobuf-dev.js",
    "build-all": "npm run build-min && npm run build-dev",
    "prepare": "npm run build-all"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:mapbox/geobuf.git"
  },
  "files": [
    "encode.js",
    "decode.js",
    "index.js",
    "dist",
    "bin",
    "geobuf.proto"
  ],
  "keywords": [
    "geographic",
    "data",
    "buffer",
    "protobuf",
    "format",
    "compression",
    "geojson",
    "topojson"
  ],
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/mapbox/geobuf/issues"
  },
  "homepage": "https://github.com/mapbox/geobuf",
  "devDependencies": {
    "benchmark": "~2.1.4",
    "browserify": "^16.5.1",
    "eslint": "^7.5.0",
    "eslint-config-mourner": "^2.0.3",
    "geojson-fixtures": "1.0.0",
    "mkdirp": "^1.0.4",
    "tape": "^5.0.1",
    "uglify-js": "^3.10.0"
  },
  "dependencies": {
    "concat-stream": "^2.0.0",
    "pbf": "^3.2.1",
    "shapefile": "~0.6.6"
  },
  "eslintConfig": {
    "extends": "mourner",
    "rules": {
      "brace-style": 0
    }
  }
}
