-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
66 lines (66 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "georedis",
"version": "3.1.3",
"author": {
"name": "Arjun Mehta",
"email": "[email protected]",
"url": "http://www.arjunmehta.net/"
},
"description": "Super fast geo queries.",
"keywords": [
"geohash",
"proximity",
"nearby",
"locations",
"spatial index",
"2D spatial index",
"spatial",
"index",
"redis",
"geolocation",
"geoproximity",
"radius",
"redis geo",
"geo redis",
"geoadd",
"geopos",
"geodist",
"georadius",
"georadiusbymember",
"geolib"
],
"repository": {
"url": "https://github.com/arjunmehta/node-georedis"
},
"dependencies": {
"geolib": "2.0.24",
"ngeohash": "0.6.3"
},
"devDependencies": {
"benchmark": "1.0.0",
"eslint": "^6.5.1",
"eslint-config-standard": "7.0.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "2.1.1",
"fakeredis": "2.0.0",
"ioredis": "2.5.0",
"nodeunit": "^0.11.3",
"redis": "3.1.1"
},
"scripts": {
"test": "nodeunit test/testEmulated.js && nodeunit test/testNative.js && nodeunit test/testIORedis.js && nodeunit test/testIORedisNative.js && nodeunit test/testAutoDetect.js",
"testEmulated": "nodeunit test/testEmulated.js",
"testNative": "nodeunit test/testNative.js",
"testIORedis": "nodeunit test/testIORedis.js",
"testIORedisNative": "nodeunit test/testIORedisNative.js",
"testFakeRedisEmulated": "nodeunit test/testFakeRedisEmulated.js",
"testAutoDetect": "nodeunit test/testAutoDetect.js",
"benchmark": "node ./test/benchmark.js"
},
"main": "./main",
"license": "MIT",
"bugs": {
"url": "https://github.com/arjunmehta/node-georedis/issues"
},
"homepage": "https://github.com/arjunmehta/node-georedis"
}