UNPKG

standardize-geolocation

Version:

takes geolocations of different formats and outputs a standardized version

93 lines (92 loc) 2.38 kB
{ "name": "standardize-geolocation", "version": "4.0.1", "description": "takes geolocations of different formats and outputs a standardized version", "main": "dist/standardize-geolocation.cjs.js", "module": "dist/standardize-geolocation.esm.js", "browser": "dist/standardize-geolocation.umd.js", "author": "Blake Knight <oss.ideas@gmail.com> (https://blakek.me/)", "contributors": [ "Blake Knight <oss.ideas@gmail.com> (https://blakek.me/)" ], "keywords": [ "geolocation", "standardize", "clean", "longitude", "latitude", "lat", "long", "lon", "tested" ], "repository": { "url": "https://github.com/blakek/standardize-geolocation.git", "type": "git" }, "license": "MIT", "files": [ "dist/**" ], "sideEffects": false, "types": "dist/index.d.ts", "engines": { "node": ">=4.0.0" }, "ava": { "extensions": [ "js", "ts" ], "files": [ "src/**/*.test.js", "src/**/*.test.ts" ], "ignoredByWatcher": [ "!src/**" ], "require": [ "ts-node/register" ] }, "browserslist": [ ">0.2%", "not dead", "not op_mini all" ], "dependencies": {}, "devDependencies": { "@babel/core": "^7.16.0", "@babel/plugin-proposal-class-properties": "^7.16.0", "@babel/plugin-transform-runtime": "^7.16.0", "@babel/preset-env": "^7.16.0", "@babel/preset-typescript": "^7.16.0", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-commonjs": "^21.0.1", "@rollup/plugin-node-resolve": "^13.0.6", "@typescript-eslint/eslint-plugin": "^5.3.1", "@typescript-eslint/parser": "^5.3.1", "amper-scripts": "^1.2.4", "ava": "^3.15.0", "nodemon": "^2.0.15", "npm-run-all": "^4.1.5", "prettier": "^2.4.1", "rimraf": "^3.0.2", "rollup": "^2.59.0", "rollup-plugin-terser": "^7.0.2", "ts-node": "^10.4.0", "typescript": "^4.4.4" }, "peerDependencies": {}, "scripts": { "build": "run-s build:clean build:types build:js", "build:clean": "rimraf ./dist", "build:types": "tsc --emitDeclarationOnly", "build:js": "rollup -c", "format-check": "amper-scripts format-check", "format": "amper-scripts format-write", "lint": "amper-scripts lint --config ./.eslintrc.js 'src/**/*.{js,ts,tsx}'", "prepack": "yarn build", "test": "ava" } }