@gibme/ipinfo 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,19 +1,19 @@
1
- Copyright (c) 2016-2023 Brandon Lehmann
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in all
11
- copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.
1
+ Copyright (c) 2016-2023 Brandon Lehmann
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
- # Simple IP Information Lookup via [Team CYMRU](https://www.team-cymru.com/ip-asn-mapping)
2
-
3
- ```javascript
4
- import IPInfo from '@gibme/ipinfo';
5
-
6
- (async () => {
7
- console.log(await IPInfo('1.1.1.1'));
8
- })();
9
- ```
1
+ # Simple IP Information Lookup via [Team CYMRU](https://www.team-cymru.com/ip-asn-mapping)
2
+
3
+ ```javascript
4
+ import IPInfo from '@gibme/ipinfo';
5
+
6
+ (async () => {
7
+ console.log(await IPInfo('1.1.1.1'));
8
+ })();
9
+ ```
@@ -0,0 +1,5 @@
1
+ import { PrefixInfo } from './types';
2
+ declare const _default: {
3
+ getPrefix: (address: string, max_retries?: number) => Promise<PrefixInfo | undefined>;
4
+ };
5
+ export default _default;
@@ -0,0 +1,146 @@
1
+ "use strict";
2
+ // Copyright (c) 2016-2023, Brandon Lehmann <brandonlehmann@gmail.com>
3
+ //
4
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ // of this software and associated documentation files (the "Software"), to deal
6
+ // in the Software without restriction, including without limitation the rights
7
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ // copies of the Software, and to permit persons to whom the Software is
9
+ // furnished to do so, subject to the following conditions:
10
+ //
11
+ // The above copyright notice and this permission notice shall be included in all
12
+ // copies or substantial portions of the Software.
13
+ //
14
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ // SOFTWARE.
21
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
22
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
23
+ return new (P || (P = Promise))(function (resolve, reject) {
24
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
25
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
26
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
27
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
28
+ });
29
+ };
30
+ Object.defineProperty(exports, "__esModule", { value: true });
31
+ const promises_1 = require("dns/promises");
32
+ /** @ignore */
33
+ const sleep = (timeout) => __awaiter(void 0, void 0, void 0, function* () { return new Promise(resolve => setTimeout(resolve, timeout)); });
34
+ /** @ignore */
35
+ const countColons = (value) => {
36
+ let count = 0;
37
+ value.replace(/:/g, val => { count++; return val; });
38
+ return count;
39
+ };
40
+ /**
41
+ * @ignore
42
+ * Expands compressed IPv6 address to uncompressed form
43
+ *
44
+ * @param value
45
+ */
46
+ const expandIPv6 = (value) => {
47
+ return value.replace(/::/, () => {
48
+ return `:${Array((7 - countColons(value)) + 1).join(':')}:`;
49
+ })
50
+ .split(':')
51
+ .map(val => {
52
+ return Array(4 - val.length).fill('0').join('') + val;
53
+ })
54
+ .join(':');
55
+ };
56
+ /**
57
+ * DNS TXT record resolution with automatic retries
58
+ *
59
+ * @param hostname
60
+ * @param max_retries
61
+ * @param retry
62
+ * @ignore
63
+ */
64
+ const getTxtRecord = (hostname, max_retries = 3, retry = 0) => __awaiter(void 0, void 0, void 0, function* () {
65
+ try {
66
+ return yield (0, promises_1.resolveTxt)(hostname);
67
+ }
68
+ catch (error) {
69
+ if (error.toString().toLowerCase().includes('refused') && retry < max_retries) {
70
+ yield sleep(1000);
71
+ return getTxtRecord(hostname, max_retries, retry);
72
+ }
73
+ throw error;
74
+ }
75
+ });
76
+ /**
77
+ * Looks up information on the Autonomous System Number (ASN) via DNS
78
+ *
79
+ * @param as
80
+ * @param max_retries
81
+ * @ignore
82
+ */
83
+ const getASN = (as, max_retries = 3) => __awaiter(void 0, void 0, void 0, function* () {
84
+ if (typeof as === 'string') {
85
+ as = parseInt(as);
86
+ }
87
+ const records = yield getTxtRecord(`AS${as}.asn.cymru.com`, max_retries);
88
+ if (records.length === 0 || records[0].length === 0) {
89
+ return undefined;
90
+ }
91
+ const [, country, registry, allocated, name] = records[0][0].split('|')
92
+ .map(elem => elem.trim());
93
+ return {
94
+ asn: as,
95
+ country: country.toUpperCase(),
96
+ registry: registry.toUpperCase(),
97
+ allocated: new Date(allocated),
98
+ name: name.split(',')[0]
99
+ };
100
+ });
101
+ /**
102
+ * Looks up the prefix information via DNS
103
+ *
104
+ * @param address
105
+ * @param max_retries
106
+ * @ignore
107
+ */
108
+ const getPrefix = (address, max_retries = 3) => __awaiter(void 0, void 0, void 0, function* () {
109
+ const original_address = address;
110
+ address = address.split('/')[0]; // strip off any CIDR notation
111
+ if (address.includes(':')) {
112
+ address = expandIPv6(address);
113
+ address = address.split(':')
114
+ .join('')
115
+ .split('')
116
+ .reverse()
117
+ .join('.');
118
+ address = `${address}.origin6.asn.cymru.com`;
119
+ }
120
+ else {
121
+ address = address.split('.')
122
+ .reverse()
123
+ .join('.');
124
+ address = `${address}.origin.asn.cymru.com`;
125
+ }
126
+ const records = yield getTxtRecord(address, max_retries);
127
+ if (records.length === 0 || records[0].length === 0) {
128
+ return undefined;
129
+ }
130
+ const [asn, prefix, country, registry, allocated] = records[0][0].split('|')
131
+ .map(elem => elem.trim());
132
+ return {
133
+ address: original_address,
134
+ zone: address,
135
+ asn: parseInt(asn),
136
+ prefix,
137
+ country: country.toUpperCase(),
138
+ registry: registry.toUpperCase(),
139
+ allocated: new Date(allocated),
140
+ as: yield getASN(asn)
141
+ };
142
+ });
143
+ exports.default = {
144
+ getPrefix
145
+ };
146
+ //# sourceMappingURL=helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.js","sourceRoot":"","sources":["../src/helpers.ts"],"names":[],"mappings":"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"}
package/dist/ipinfo.d.ts CHANGED
@@ -1,37 +1,9 @@
1
- /**
2
- * IP Prefix information
3
- */
4
- export interface PrefixEntry {
5
- address: string;
6
- zone: string;
7
- asn: number;
8
- prefix: string;
9
- country: string;
10
- registry: string;
11
- allocated: Date;
12
- }
13
- /**
14
- * ASN information
15
- */
16
- export interface ASNEntry {
17
- asn: number;
18
- country: string;
19
- registry: string;
20
- allocated: Date;
21
- name: string;
22
- }
23
- /**
24
- * IP Prefix information including the ASN name (if available)
25
- */
26
- export interface IPInfo extends PrefixEntry {
27
- as?: ASNEntry;
28
- }
29
- /**
30
- * Looks up information regarding the IP address supplied
31
- *
32
- * @param address
33
- * @param maxRetries
34
- * @param retry
35
- */
36
- export declare const IPInfo: (address: string, maxRetries?: number, retry?: number) => Promise<IPInfo>;
37
- export default IPInfo;
1
+ import { PrefixInfo } from './types';
2
+ /**
3
+ * Looks up information regarding the IP address supplied
4
+ *
5
+ * @param address
6
+ * @param max_retries
7
+ */
8
+ export declare const IPInfo: (address: string, max_retries?: number) => Promise<PrefixInfo | undefined>;
9
+ export default IPInfo;
package/dist/ipinfo.js CHANGED
@@ -1,181 +1,47 @@
1
- "use strict";
2
- // Copyright (c) 2016-2023, Brandon Lehmann <brandonlehmann@gmail.com>
3
- //
4
- // Permission is hereby granted, free of charge, to any person obtaining a copy
5
- // of this software and associated documentation files (the "Software"), to deal
6
- // in the Software without restriction, including without limitation the rights
7
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
- // copies of the Software, and to permit persons to whom the Software is
9
- // furnished to do so, subject to the following conditions:
10
- //
11
- // The above copyright notice and this permission notice shall be included in all
12
- // copies or substantial portions of the Software.
13
- //
14
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
- // SOFTWARE.
21
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
22
- if (k2 === undefined) k2 = k;
23
- var desc = Object.getOwnPropertyDescriptor(m, k);
24
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
25
- desc = { enumerable: true, get: function() { return m[k]; } };
26
- }
27
- Object.defineProperty(o, k2, desc);
28
- }) : (function(o, m, k, k2) {
29
- if (k2 === undefined) k2 = k;
30
- o[k2] = m[k];
31
- }));
32
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
33
- Object.defineProperty(o, "default", { enumerable: true, value: v });
34
- }) : function(o, v) {
35
- o["default"] = v;
36
- });
37
- var __importStar = (this && this.__importStar) || function (mod) {
38
- if (mod && mod.__esModule) return mod;
39
- var result = {};
40
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
41
- __setModuleDefault(result, mod);
42
- return result;
43
- };
44
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
45
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
46
- return new (P || (P = Promise))(function (resolve, reject) {
47
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
48
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
49
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
50
- step((generator = generator.apply(thisArg, _arguments || [])).next());
51
- });
52
- };
53
- Object.defineProperty(exports, "__esModule", { value: true });
54
- exports.IPInfo = void 0;
55
- const dns = __importStar(require("dns"));
56
- /** @ignore */
57
- const sleep = (timeout) => __awaiter(void 0, void 0, void 0, function* () { return new Promise(resolve => setTimeout(resolve, timeout)); });
58
- /** @ignore */
59
- const countColons = (value) => {
60
- let count = 0;
61
- value.replace(/:/g, val => { count++; return val; });
62
- return count;
63
- };
64
- /**
65
- * @ignore
66
- * Expands compressed IPv6 address to uncompressed form
67
- *
68
- * @param value
69
- */
70
- const expandIPv6 = (value) => {
71
- return value.replace(/::/, () => {
72
- return `:${Array((7 - countColons(value)) + 1).join(':')}:`;
73
- })
74
- .split(':')
75
- .map(val => {
76
- return Array(4 - val.length).fill('0').join('') + val;
77
- })
78
- .join(':');
79
- };
80
- /**
81
- * @ignore
82
- * Looks up the prefix information via DNS
83
- *
84
- * @param address
85
- */
86
- const prefix = (address) => __awaiter(void 0, void 0, void 0, function* () {
87
- return new Promise((resolve, reject) => {
88
- const _address = address;
89
- address = address.split('/')[0]; // strip off any CIDR notation
90
- if (address.includes(':')) {
91
- address = expandIPv6(address);
92
- address = address.split(':')
93
- .join('')
94
- .split('')
95
- .reverse()
96
- .join('.');
97
- address = `${address}.origin6.asn.cymru.com`;
98
- }
99
- else {
100
- address = address.split('.')
101
- .reverse()
102
- .join('.');
103
- address = `${address}.origin.asn.cymru.com`;
104
- }
105
- dns.resolveTxt(address, (error, records) => {
106
- if (error) {
107
- return reject(error);
108
- }
109
- if (records.length === 0 || records[0].length === 0) {
110
- throw new Error('No records found');
111
- }
112
- const [asn, prefix, country, registry, allocated] = records[0][0].split('|')
113
- .map(elem => elem.trim());
114
- return resolve({
115
- address: _address,
116
- zone: address,
117
- asn: parseInt(asn),
118
- prefix,
119
- country: country.toUpperCase(),
120
- registry: registry.toUpperCase(),
121
- allocated: new Date(allocated)
122
- });
123
- });
124
- });
125
- });
126
- /**
127
- * @ignore
128
- * Looks up information on the ASN via DNS
129
- *
130
- * @param as
131
- */
132
- const asn = (as) => __awaiter(void 0, void 0, void 0, function* () {
133
- return new Promise((resolve, reject) => {
134
- dns.resolveTxt(`AS${as}.asn.cymru.com`, (error, records) => {
135
- if (error) {
136
- return reject(error);
137
- }
138
- if (records.length === 0 || records[0].length === 0) {
139
- throw new Error('No records found');
140
- }
141
- const [, country, registry, allocated, name] = records[0][0].split('|')
142
- .map(elem => elem.trim());
143
- return resolve({
144
- asn: as,
145
- country: country.toUpperCase(),
146
- registry: registry.toUpperCase(),
147
- allocated: new Date(allocated),
148
- name
149
- });
150
- });
151
- });
152
- });
153
- /**
154
- * Looks up information regarding the IP address supplied
155
- *
156
- * @param address
157
- * @param maxRetries
158
- * @param retry
159
- */
160
- const IPInfo = (address, maxRetries = 3, retry = 0) => __awaiter(void 0, void 0, void 0, function* () {
161
- try {
162
- const info = yield prefix(address);
163
- try {
164
- const _asn = yield asn(info.asn);
165
- return Object.assign(Object.assign({}, info), { as: _asn });
166
- }
167
- catch (_a) {
168
- return Object.assign({}, info);
169
- }
170
- }
171
- catch (error) {
172
- if (error.toString().toLowerCase().includes('refused') && retry < maxRetries) {
173
- yield sleep(1000);
174
- return (0, exports.IPInfo)(address, maxRetries, retry++);
175
- }
176
- throw error;
177
- }
178
- });
179
- exports.IPInfo = IPInfo;
180
- exports.default = exports.IPInfo;
1
+ "use strict";
2
+ // Copyright (c) 2016-2023, Brandon Lehmann <brandonlehmann@gmail.com>
3
+ //
4
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ // of this software and associated documentation files (the "Software"), to deal
6
+ // in the Software without restriction, including without limitation the rights
7
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ // copies of the Software, and to permit persons to whom the Software is
9
+ // furnished to do so, subject to the following conditions:
10
+ //
11
+ // The above copyright notice and this permission notice shall be included in all
12
+ // copies or substantial portions of the Software.
13
+ //
14
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ // SOFTWARE.
21
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
22
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
23
+ return new (P || (P = Promise))(function (resolve, reject) {
24
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
25
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
26
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
27
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
28
+ });
29
+ };
30
+ var __importDefault = (this && this.__importDefault) || function (mod) {
31
+ return (mod && mod.__esModule) ? mod : { "default": mod };
32
+ };
33
+ Object.defineProperty(exports, "__esModule", { value: true });
34
+ exports.IPInfo = void 0;
35
+ const helpers_1 = __importDefault(require("./helpers"));
36
+ /**
37
+ * Looks up information regarding the IP address supplied
38
+ *
39
+ * @param address
40
+ * @param max_retries
41
+ */
42
+ const IPInfo = (address, max_retries = 3) => __awaiter(void 0, void 0, void 0, function* () {
43
+ return helpers_1.default.getPrefix(address, max_retries);
44
+ });
45
+ exports.IPInfo = IPInfo;
46
+ exports.default = exports.IPInfo;
181
47
  //# sourceMappingURL=ipinfo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ipinfo.js","sourceRoot":"","sources":["../src/ipinfo.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ipinfo.js","sourceRoot":"","sources":["../src/ipinfo.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,EAAE;AACF,+EAA+E;AAC/E,gFAAgF;AAChF,+EAA+E;AAC/E,4EAA4E;AAC5E,wEAAwE;AACxE,2DAA2D;AAC3D,EAAE;AACF,iFAAiF;AACjF,kDAAkD;AAClD,EAAE;AACF,6EAA6E;AAC7E,2EAA2E;AAC3E,8EAA8E;AAC9E,yEAAyE;AACzE,gFAAgF;AAChF,gFAAgF;AAChF,YAAY;;;;;;;;;;;;;;;AAGZ,wDAAgC;AAEhC;;;;;GAKG;AACI,MAAM,MAAM,GAAG,CAClB,OAAe,EACf,WAAW,GAAG,CAAC,EACgB,EAAE;IACjC,OAAO,iBAAO,CAAC,SAAS,CAAC,OAAO,EAAE,WAAW,CAAC,CAAC;AACnD,CAAC,CAAA,CAAC;AALW,QAAA,MAAM,UAKjB;AAEF,kBAAe,cAAM,CAAC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * ASN information
3
+ */
4
+ export interface ASNEntry {
5
+ asn: number;
6
+ country: string;
7
+ registry: string;
8
+ allocated: Date;
9
+ name: string;
10
+ }
11
+ /**
12
+ * IP Prefix information including the ASN name (if available)
13
+ */
14
+ export interface PrefixInfo {
15
+ address: string;
16
+ zone: string;
17
+ asn: number;
18
+ prefix: string;
19
+ country: string;
20
+ registry: string;
21
+ allocated: Date;
22
+ as?: ASNEntry;
23
+ }
package/dist/types.js ADDED
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // Copyright (c) 2016-2023, Brandon Lehmann <brandonlehmann@gmail.com>
3
+ //
4
+ // Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ // of this software and associated documentation files (the "Software"), to deal
6
+ // in the Software without restriction, including without limitation the rights
7
+ // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ // copies of the Software, and to permit persons to whom the Software is
9
+ // furnished to do so, subject to the following conditions:
10
+ //
11
+ // The above copyright notice and this permission notice shall be included in all
12
+ // copies or substantial portions of the Software.
13
+ //
14
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ // SOFTWARE.
21
+ Object.defineProperty(exports, "__esModule", { value: true });
22
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,EAAE;AACF,+EAA+E;AAC/E,gFAAgF;AAChF,+EAA+E;AAC/E,4EAA4E;AAC5E,wEAAwE;AACxE,2DAA2D;AAC3D,EAAE;AACF,iFAAiF;AACjF,kDAAkD;AAClD,EAAE;AACF,6EAA6E;AAC7E,2EAA2E;AAC3E,8EAA8E;AAC9E,yEAAyE;AACzE,gFAAgF;AAChF,gFAAgF;AAChF,YAAY"}
package/package.json CHANGED
@@ -1,56 +1,57 @@
1
- {
2
- "name": "@gibme/ipinfo",
3
- "version": "0.0.6",
4
- "description": "A simple IP information lookup helper using Team CYMRU services",
5
- "main": "dist/ipinfo.js",
6
- "types": "dist/ipinfo.d.ts",
7
- "files": [
8
- "dist/*"
9
- ],
10
- "license": "MIT",
11
- "scripts": {
12
- "build": "yarn build:typescript",
13
- "build:docs": "./node_modules/.bin/typedoc",
14
- "build:typescript": "./node_modules/.bin/tsc",
15
- "test": "yarn test:style && yarn test:mocha",
16
- "test:style": "yarn style",
17
- "test:mocha": "./node_modules/.bin/mocha --exit --timeout 30000 --require ts-node/register test/test.ts",
18
- "style": "./node_modules/.bin/eslint src/**/*.ts test/**/*.ts",
19
- "fix-style": "./node_modules/.bin/eslint --fix src/**/*.ts test/**/*.ts",
20
- "fix:style": "yarn fix-style",
21
- "prepublishOnly": "yarn build"
22
- },
23
- "repository": {
24
- "type": "git",
25
- "url": "git+https://github.com/gibme-npm/ipinfo.git"
26
- },
27
- "bugs": {
28
- "url": "https://github.com/gibme-npm/ipinfo/issues"
29
- },
30
- "homepage": "https://gibme-npm.github.io/ipinfo/",
31
- "engines": {
32
- "node": ">=16"
33
- },
34
- "engineStrict": true,
35
- "author": {
36
- "name": "Brandon Lehmann",
37
- "email": "brandonlehmann@gmail.com"
38
- },
39
- "dependencies": {},
40
- "devDependencies": {
41
- "@types/mocha": "^10.0.0",
42
- "@types/node": "^18.11.9",
43
- "@typescript-eslint/eslint-plugin": "^5.42.0",
44
- "@typescript-eslint/parser": "^5.42.0",
45
- "eslint": "^8.26.0",
46
- "eslint-config-standard": "^17.0.0",
47
- "eslint-plugin-import": "^2.26.0",
48
- "eslint-plugin-n": "^15.4.0",
49
- "eslint-plugin-node": "^11.1.0",
50
- "eslint-plugin-promise": "^6.1.1",
51
- "mocha": "^10.1.0",
52
- "ts-node": "^10.9.1",
53
- "typedoc": "^0.23.21",
54
- "typescript": "^4.8.4"
55
- }
56
- }
1
+ {
2
+ "name": "@gibme/ipinfo",
3
+ "version": "0.0.8",
4
+ "description": "A simple IP information lookup helper using Team CYMRU services",
5
+ "main": "dist/ipinfo.js",
6
+ "types": "dist/ipinfo.d.ts",
7
+ "files": [
8
+ "dist/*"
9
+ ],
10
+ "license": "MIT",
11
+ "scripts": {
12
+ "build": "yarn build:typescript",
13
+ "build:docs": "./node_modules/.bin/typedoc",
14
+ "build:typescript": "./node_modules/.bin/tsc",
15
+ "test": "yarn test:style && yarn test:typecheck && yarn test:mocha",
16
+ "test:typecheck": "./node_modules/.bin/tsc --noEmit",
17
+ "test:style": "yarn style",
18
+ "test:mocha": "./node_modules/.bin/mocha --exit --timeout 30000 --require ts-node/register test/test.ts",
19
+ "style": "./node_modules/.bin/eslint src/**/*.ts test/**/*.ts",
20
+ "fix-style": "./node_modules/.bin/eslint --fix src/**/*.ts test/**/*.ts",
21
+ "fix:style": "yarn fix-style",
22
+ "prepublishOnly": "yarn build"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/gibme-npm/ipinfo.git"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/gibme-npm/ipinfo/issues"
30
+ },
31
+ "homepage": "https://gibme-npm.github.io/ipinfo/",
32
+ "engines": {
33
+ "node": ">=16"
34
+ },
35
+ "engineStrict": true,
36
+ "author": {
37
+ "name": "Brandon Lehmann",
38
+ "email": "brandonlehmann@gmail.com"
39
+ },
40
+ "dependencies": {},
41
+ "devDependencies": {
42
+ "@types/mocha": "^10.0.1",
43
+ "@types/node": "^20.4.8",
44
+ "@typescript-eslint/eslint-plugin": "^6.2.1",
45
+ "@typescript-eslint/parser": "^6.2.1",
46
+ "eslint": "^8.46.0",
47
+ "eslint-config-standard": "^17.1.0",
48
+ "eslint-plugin-import": "^2.28.0",
49
+ "eslint-plugin-n": "^16.0.1",
50
+ "eslint-plugin-node": "^11.1.0",
51
+ "eslint-plugin-promise": "^6.1.1",
52
+ "mocha": "^10.2.0",
53
+ "ts-node": "^10.9.1",
54
+ "typedoc": "^0.24.8",
55
+ "typescript": "^5.1.6"
56
+ }
57
+ }