-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
53 lines (53 loc) · 1.1 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
{
"name": "polygon-lookup",
"version": "0.0.0-development",
"author": "pelias",
"description": "Fast point-in-polygon intersection for large numbers of polygons.",
"homepage": "https://github.com/pelias/polygon-lookup",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "node test/test.js | tap-spec",
"ci": "npm test",
"lint": "jshint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/polygon-lookup.git"
},
"keywords": [
"polygon",
"lookup",
"intersection",
"coarse",
"reverse-geocode"
],
"bugs": {
"url": "https://github.com/pelias/polygon-lookup/issues"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=1.4.3",
"elasticsearch": ">=1.1.1"
},
"dependencies": {
"lodash": "^4.14.2",
"point-in-polygon": "1.0.1",
"rbush": "^2.0.2"
},
"devDependencies": {
"jshint": "^2.9.4",
"precommit-hook": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"success": []
}
}