-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (66 loc) · 1007 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "your-public-ip-address",
"version": "1.0.0",
"description": "Get your public IP address!",
"license": "MIT",
"type": "module",
"repository":"https://github.com/HCPSMW/your-glob-IP",
"author": {
"name": "Sebastian Wien"
},
"exports": {
"types": "./index.d.ts",
"node": "./index.js",
"default": "./browser.js"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts",
"browser.js",
"core.js"
],
"keywords": [
"get",
"ip",
"ipv4",
"ipv6",
"address",
"external",
"machine",
"public",
"fast",
"opendns",
"dns"
],
"dependencies": {
"aggregate-error": "^4.0.1",
"dns-socket": "^4.2.2",
"got": "^12.1.0",
"is-ip": "^4.0.0"
},
"devDependencies": {
"ava": "^4.3.0",
"sinon": "^14.0.0",
"time-span": "^5.0.0",
"tsd": "^0.21.0",
"xo": "^0.50.0"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"ava": {
"serial": true,
"files": [
"test.js"
]
}
}