forked from strikeentco/geo-nearby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.29 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
{
"name": "geo-nearby",
"author": "Alexey Bystrov <[email protected]>",
"version": "2.0.1",
"description": "Uber fast nearby locations search by coordinates. Supports GeoJSON.",
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"geo nearby",
"geolocation",
"geo",
"nearby",
"proximity",
"locations",
"places",
"spatial index",
"geohash",
"2D spatial index",
"spatial",
"index",
"geojson"
],
"main": "./main.js",
"files": [
"lib",
"main.js"
],
"scripts": {
"test": "mocha test",
"lint": "eslint main.js lib/**",
"check": "npm run lint && npm run test",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"test-on-travis": "istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/strikeentco/geo-nearby.git"
},
"bugs": {
"url": "https://github.com/strikeentco/geo-nearby/issues"
},
"dependencies": {
"ngeohash": "^0.6.0"
},
"devDependencies": {
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"mocha": "^3.0.2",
"should": "^11.0.0"
},
"license": "MIT"
}