-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 943 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
41
42
{
"name": "geodetic-haversine-distance",
"version": "1.0.1",
"description": "Distance between two latitude/longitude coordinates taking latitude into account",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"earth-radius-at-geodetic-latitude": "^1.0.0"
},
"devDependencies": {
"jest": "^19.0.1"
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbrockman/geodetic-haversine-distance.git"
},
"keywords": [
"geo",
"haversine",
"distance",
"coordinates",
"latitude",
"longitude"
],
"author": "David Brockman Smoliansky",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbrockman/geodetic-haversine-distance/issues"
},
"homepage": "https://github.com/dbrockman/geodetic-haversine-distance#readme"
}