-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
{
"name": "@voodoo.io/maxmind-reader",
"version": "1.0.12",
"description": "Simple module to read a maxmind db from S3 a keep it into memory! You can also retrieve the file periodically.",
"main": "index.js",
"bin": "./index.js",
"types": "./index.d.ts",
"exports": {
"require": "./index.js",
"import": "./index.js"
},
"files": [
"src/**"
],
"keywords": [
"retry",
"maxmind",
"geoloc"
],
"homepage": "https://github.com/VoodooTeam/maxmind-reader",
"repository": {
"type": "git",
"url": "git+https://github.com/VoodooTeam/maxmind-reader.git"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"linter": "./node_modules/.bin/eslint -c ./.eslintrc ./",
"all": "npm run lint && npm run test"
},
"engines": {
"nodes": ">=8.0.0"
},
"engineStrict": true,
"author": {
"name": "Vincent Vallet",
"email": "[email protected]",
"url": "https://github.com/wallet77"
},
"license": "MIT",
"dependencies": {
"async-await-retry": "2.0.1",
"maxmind": "4.3.8"
},
"devDependencies": {
"@voodoo.io/aws-utils": "^3.0.3",
"aws-sdk": "^2.1282.0",
"aws-sdk-mock": "^5.8.0",
"eslint": "^8.30.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1"
}
}