forked from Richienb/iplocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "iplocation",
"version": "6.1.0",
"description": "get ip location information",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"lib/*",
"src/*"
],
"scripts": {
"build": "tsc",
"test": "npm run build && tslint --project . && eslint . && ahcom"
},
"repository": {
"type": "git",
"url": "git://github.com/roryrjb/iplocation"
},
"keywords": [
"ip",
"location",
"ip-location",
"geolocation"
],
"author": "Rory Bradford <[email protected]> (https://roryrjb.com)",
"contributors": [
{
"name": "Chris Dyson"
},
{
"name": "Ahmed Tarek"
},
{
"name": "Jacques L. Chereau"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/roryrjb/iplocation/issues"
},
"homepage": "https://github.com/roryrjb/iplocation",
"dependencies": {
"debug": "^3.0.0",
"ip-validator": "0.0.1",
"request": "=2.88.0"
},
"devDependencies": {
"@types/debug": "=0.0.31",
"@types/request": "=2.47.1",
"ahcom": "=0.0.10",
"eslint": "=5.7.0",
"tslint": "=5.11.0",
"typescript": "=3.1.3"
},
"engines": {
"node": ">=4.0.0"
}
}