-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 KB
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
74
75
76
77
{
"name": "@gautric/node-red-ipinfo",
"version": "4.4.0",
"description": "Node-RED node for IP geolocation using the IPInfo.io API — retrieve city, region, country, coordinates, ISP, and more for any IP address.",
"keywords": [
"node-red",
"IPinfo",
"node-ipinfo",
"ip",
"ip-address",
"ipv4",
"ipv6",
"network",
"geolocation",
"geo",
"lookup",
"whois"
],
"author": {
"name": "Greg I/O",
"email": "gautric4code@gmail.com"
},
"homepage": "https://github.com/gautric/node-red-ipinfo#readme",
"node-red": {
"version": ">=4.0.8",
"nodes": {
"ipinfo": "ipinfo.js",
"ipinfo-config": "ipinfo-config.js"
}
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/gautric"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gautric/node-red-ipinfo.git"
},
"bugs": {
"url": "https://github.com/gautric/node-red-ipinfo/issues",
"email": "gautric4code@gmail.com"
},
"engines": {
"node": ">=18.0.0"
},
"type": "commonjs",
"main": "ipinfo.js",
"files": [
"ipinfo.js",
"ipinfo.html",
"ipinfo-config.js",
"ipinfo-config.html",
"icons/",
"locales/",
"examples/",
"LICENSE",
"README.md"
],
"scripts": {
"test": "mocha \"test/**/*_spec.js\"",
"test:watch": "mocha \"test/**/*_spec.js\" --watch",
"test:coverage": "nyc mocha \"test/**/*_spec.js\"",
"lint": "eslint *.js"
},
"dependencies": {
"node-ipinfo": "^4.4.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.0.0",
"node-red-node-test-helper": "^0.3.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^17.0.0"
}
}