{
  "name": "geojson2h3",
  "description": "Conversion utilities between H3 indexes and GeoJSON",
  "version": "1.3.2",
  "author": "Nick Rabinowitz <nickr@uber.com>",
  "keywords": [
    "h3",
    "hexagon",
    "geojson"
  ],
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/uber/geojson2h3.git"
  },
  "main": "index.js",
  "es2015": "lib/geojson2h3.js",
  "types": "dist/types.d.ts",
  "dependencies": {
    "h3-js": "^4.4.0"
  },
  "devDependencies": {
    "@types/geojson": "^7946.0.7",
    "benchmark": "^2.1.4",
    "buble": "^0.19.3",
    "eslint": "^4.19.1",
    "eslint-config-prettier": "^2.9.0",
    "eslint-config-uber-es2015": "^3.1.2",
    "eslint-plugin-prettier": "^2.6.0",
    "faucet": "^0.0.1",
    "istanbul": "^0.4.3",
    "jsdoc": "^4.0.5",
    "jsdoc-to-markdown": "^9.1.3",
    "prettier": "^1.19.1",
    "tape": "^4.8.0",
    "typescript": "^4.1.5"
  },
  "scripts": {
    "lint": "eslint src test",
    "cover": "istanbul cover --report lcov --report html -- test/index.js",
    "test": "yarn dist-test && yarn lint && yarn test-es6 && yarn test-dist",
    "test-raw": "node test/index.js",
    "test-es6": "yarn test-raw | faucet",
    "test-dist": "node dist/test/index.js | faucet",
    "test-ci": "yarn lint && yarn run test-es6 && yarn run test-dist && yarn run check-prettier && yarn run check-docs && yarn run check-types",
    "check-prettier": "yarn prettier && git diff --exit-code",
    "check-types": "tsc --strict --noEmit types.d.ts",
    "check-docs": "yarn build-docs && git diff --exit-code",
    "build-docs": "jsdoc2md --no-cache --global-index-format grouped --separators --template doc-files/README.md.tmpl src/geojson2h3.js > README.md",
    "dist": "yarn dist-clean && buble -i src -o dist/src && cp types.d.ts dist",
    "dist-clean": "rm -rf dist && mkdir dist",
    "dist-test": "yarn dist && buble -i test -o dist/test",
    "benchmarks": "yarn dist-test && node dist/test/benchmarks.js",
    "prepublish": "yarn dist",
    "prettier": "prettier --write 'src/**/*.js' 'test/**/*.js' '*.d.ts'"
  },
  "engines": {
    "node": ">=4",
    "npm": ">=3",
    "yarn": ">=1.3.0"
  },
  "volta": {
    "node": "12.19.0",
    "yarn": "1.22.22"
  },
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
