-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "node-iplocate",
"version": "1.0.3",
"description": "Find geolocation data from IP addresses (e.g. city, country, timezone) using the IPLocate.io API",
"main": "index.js",
"scripts": {
"test": "nyc ./node_modules/.bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/tallytarik/node-iplocate.git"
},
"bugs": {
"url": "https://github.com/tallytarik/node-iplocate/issues"
},
"homepage": "https://github.com/tallytarik/node-iplocate#readme",
"keywords": [
"geoip",
"geolocate",
"geolocation",
"ip",
"maxmind",
"city",
"country",
"location",
"ip",
"ipv4",
"ipv6"
],
"author": "Tally Tarik",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.2.3",
"request": "^2.88.2",
"request-promise": "^4.2.2",
"validate-ip-node": "^1.0.8"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.1.0",
"mocha": "^9.0.0",
"nock": "^9.1.4",
"nyc": "^15.0.1",
"sinon": "^4.1.3",
"superagent": "^3.8.2",
"supertest": "^3.0.0"
}
}