-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 855 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
37
38
39
40
{
"name": "node-where",
"version": "1.1.0",
"description": "A very simple geolocation library in node.js",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venables/node-where.git"
},
"keywords": [
"where",
"geolocation",
"geoip",
"ip",
"country",
"city",
"lat",
"lng",
"latitude",
"longitude"
],
"author": "Matt Venables <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/venables/node-where/issues"
},
"homepage": "https://github.com/venables/node-where#readme",
"dependencies": {
"lodash": "^4.17.4",
"request": "^2.81.0",
"validator": "^7.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.4.1"
}
}