-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 933 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
{
"name": "@mangoweb/geolocation-utils",
"version": "1.2.0",
"description": "A utility library for calculations with geolocations",
"main": "lib/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "babel src -d lib",
"prepublishOnly": "npm run build && npm test",
"test": "ava --verbose"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/teqplay/geolocation-utils.git"
},
"keywords": [
"geo",
"geolocation",
"location",
"utils"
],
"author": "Teqplay <https://teqplay.nl>",
"license": "MIT",
"homepage": "https://bitbucket.org/teqplay/geolocation-utils#readme",
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"devDependencies": {
"ava": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "6.24.1"
},
"dependencies": {
"point-in-polygon": "1.0.1"
}
}