UNPKG

iplocation

Version:

Get ip location information.

74 lines (73 loc) 1.35 kB
{ "name": "iplocation", "version": "7.2.0", "description": "Get ip location information.", "repository": "https://github.com/Richienb/iplocation.git", "author": "Richie Bendall <richiebendall@gmail.com>", "contributors": [ "Rory Bradford <roryrjb@gmail.com> (https://roryrjb.com)", "Chris Dyson", "Ahmed Tarek", "Jacques L. Chereau" ], "license": "MIT", "main": "dist/index.js", "files": [ "dist" ], "engines": { "node": ">=10" }, "scripts": { "build": "tsc", "lint": "xo", "test": "xo && ava", "prepublishOnly": "tsc" }, "keywords": [ "ip", "location", "coordinates", "locate", "find", "address", "ip-location", "geolocation" ], "dependencies": { "is-ip": "^3.1.0", "ky": "^0.19.1", "ky-universal": "^0.6.0" }, "devDependencies": { "@richienb/tsconfig": "^0.1.1", "@types/node": "^13.13.4", "ava": "^3.8.1", "eslint-config-richienb": "^0.4.2", "ts-node": "^8.9.1", "typescript": "^3.8.3", "xo": "^0.30.0" }, "resolutions": { "eslint": "^6.8.0" }, "xo": { "extends": "richienb/typescript", "overrides": [ { "files": "test.ts", "rules": { "node/no-missing-import": 0 } } ] }, "ava": { "extensions": [ "ts" ], "require": [ "ts-node/register" ] } }