UNPKG

geokit

Version:

An assortment of geolocation related tools, all packaged in one easy to use kit.

88 lines (87 loc) 2.49 kB
{ "name": "geokit", "version": "1.1.0", "description": "An assortment of geolocation related tools, all packaged in one easy to use kit.", "scripts": { "build": "rm -rf ./dist && rollup -c", "docs": "typedoc --out docs/ src/", "coverage": "nyc report --reporter=text-lcov | coveralls", "test": "nyc --reporter=html --reporter=text mocha --package package.json --exit", "lint": "gts check", "release:major": "npm run build && changelog -M && git add . && git commit -m 'chore(release): major version release' && npm version major && git push origin && git push origin --tags", "release:minor": "npm run build && changelog -m && git add . && git commit -m 'chore(release): minor version release' && npm version minor && git push origin && git push origin --tags", "release:patch": "npm run build && changelog -p && git add . && git commit -m 'chore(release): patch version release' && npm version patch && git push origin && git push origin --tags", "prepare": "npm run build" }, "main": "dist/index.cjs.js", "browser": "dist/geokit.js", "module": "dist/index.esm.js", "typings": "dist/index.d.ts", "author": "Michael Solati <mkslt04@gmail.com>", "homepage": "https://geokit.geofirestore.com", "repository": { "type": "git", "url": "git+https://github.com/MichaelSolati/geokit.git" }, "bugs": { "url": "https://github.com/MichaelSolati/geokit/issues" }, "readme": "README.md", "license": "MIT", "keywords": [ "geo", "coordinates", "geohash", "toolkit", "distance" ], "files": [ "dist/**", "CHANGELOG.md", "LICENSE", "README.md", "package.json" ], "devDependencies": { "@types/chai": "^4.2.11", "@types/mocha": "^7.0.2", "@types/node": "^13.11.1", "chai": "^4.2.0", "coveralls": "^3.1.0", "firebase-tools": "^8.4.2", "generate-changelog": "^1.8.0", "gts": "^2.0.2", "mocha": "^7.2.0", "nyc": "^15.1.0", "rollup": "^2.15.0", "rollup-plugin-terser": "^6.1.0", "rollup-plugin-typescript2": "^0.27.1", "ts-node": "^8.10.2", "typedoc": "^0.17.7", "typescript": "^3.9.5" }, "mocha": { "extension": [ "ts" ], "reporter": "spec", "require": [ "ts-node/register" ] }, "nyc": { "extension": [ ".ts" ], "include": [ "src/**/*.ts" ], "exclude": [ "src/interfaces.ts" ], "reporter": [ "html" ], "all": true } }