forked from filipecorrea/vicinityhash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "vicinityhash",
"version": "2.5.0",
"description": "Geohashes based on latitude, longitude and radius",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest --config config/jest.config.ts --coverage",
"prebuild": "rm -rf dist",
"build": "tsc -p config/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/filipecorrea/vicinityhash.git"
},
"keywords": [
"geofence",
"geohash",
"geolocation",
"vicinity",
"circle",
"proximity",
"latitude",
"longitude",
"radius"
],
"author": "Filipe Correa <[email protected]> (http://github.com/filipecorrea)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/filipecorrea/vicinityhash/issues"
},
"homepage": "https://github.com/filipecorrea/vicinityhash#readme",
"dependencies": {
"ngeohash": "0.6.3"
},
"devDependencies": {
"@types/jest": "28.1.6",
"@types/ngeohash": "0.6.8",
"@types/node": "22.10.6",
"jest": "28.1.1",
"ts-jest": "28.0.7",
"ts-node": "10.9.2",
"typescript": "5.7.3"
}
}