UNPKG

hilbert-geohash

Version:

Node.js implementation of Hilbert-curve based geohashing.

46 lines (45 loc) 1.1 kB
{ "name": "hilbert-geohash", "version": "0.0.4", "description": "Node.js implementation of Hilbert-curve based geohashing.", "main": "./lib/index.js", "types": "./lib/index.d.ts", "scripts": { "test": "node ./node_modules/mocha/bin/mocha", "lint": "node ./node_modules/prettier/bin-prettier.js --check .", "build": "tsc" }, "files": [ "lib/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/napuu/node-hilbert-geohash.git" }, "keywords": [ "geohash", "hilbert", "curve" ], "author": "Santeri Kääriäinen <santeri.kaariainen@iki.fi>", "license": "MIT", "bugs": { "url": "https://github.com/napuu/node-hilbert-geohash/issues" }, "homepage": "https://github.com/napuu/node-hilbert-geohash#readme", "devDependencies": { "@types/node": "^14.6.2", "chai": "^4.2.0", "husky": "^4.2.5", "mocha": "^8.1.3", "prettier": "^2.1.1", "rewire": "^5.0.0", "typescript": "^4.0.2" }, "husky": { "hooks": { "pre-commit": "npm run lint", "pre-push": "npm run test" } } }