forked from sindresorhus/public-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 898 Bytes
/
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
{
"name": "public-ip",
"version": "4.0.1",
"description": "Get your public IP address - very fast!",
"license": "MIT",
"repository": "sindresorhus/public-ip",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava test.js && tsd"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"keywords": [
"get",
"ip",
"ipv4",
"ipv6",
"address",
"external",
"public",
"machine",
"fast",
"opendns",
"dns"
],
"dependencies": {
"dns-socket": "^4.2.0",
"got": "^9.6.0",
"is-ip": "^3.1.0"
},
"devDependencies": {
"ava": "^2.2.0",
"sinon": "^7.4.1",
"tsd": "^0.11.0",
"xo": "^0.25.3"
},
"browser": "browser.js",
"xo": {
"envs": [
"node",
"browser"
]
}
}