-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
73 lines (73 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "iplocation",
"version": "7.2.0",
"description": "Get ip location information.",
"repository": "https://github.com/Richienb/iplocation.git",
"author": "Richie Bendall <[email protected]>",
"contributors": [
"Rory Bradford <[email protected]> (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"
]
}
}