UNPKG

gthash

Version:

Geotemporal hashing function based on geohash and z-order curves. The resulting string hash encodes time and space on Earth with variable precision and all other characteristics of a geohash. Comes with Typescript definitions

56 lines (55 loc) 1.39 kB
{ "name": "gthash", "version": "0.1.2", "author": "Chris Chares", "keywords": [ "geohash", "geotemporal", "hash", "gthash", "spacial", "temporal" ], "description": "Geotemporal hashing function based on geohash and z-order curves. The resulting string hash encodes time and space on Earth with variable precision and all other characteristics of a geohash. Comes with Typescript definitions", "homepage": "https://github.com/ChrisChares/gthash/tree/master", "repository": "github:chrischares/gthash", "bugs": { "url": "https://github.com/ChrisChares/gthash/issues" }, "license": "MIT", "private": false, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "start": "ts-node index.ts", "build": "tsc", "test": "jest", "coverage": "jest --coverage --coverageReporters=text-lcov | coveralls" }, "jest": { "roots": [ "<rootDir>" ], "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$", "moduleFileExtensions": [ "ts", "tsx", "js", "jsx", "json", "node" ] }, "devDependencies": { "@types/jest": "^22.2.3", "@types/node": "^9.6.11", "coveralls": "^3.0.1", "jest": "^22.4.3", "ts-jest": "^22.4.4", "ts-node": "^6.0.2", "typescript": "^2.8.3" } }