-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 968 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
{
"name": "identify-by-ip-2000",
"description": "API for get GEO Locations (country, region, city, timezone, latitude/longitude) by IP address.",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Ihor Mozil",
"repository": {
"type": "git",
"url": "https://github.com/m1g0r/identify-by-ip-2000.git"
},
"engines": {
"node": ">=8.0.0"
},
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dbupdate": "node ./node_modules/geoip-lite/scripts/updatedb.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"geoip-lite": "^1.3.7",
"jsonschema": "^1.2.4",
"swagger-ui-express": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"sinon": "4.1.3"
}
}