-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.02 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
{
"name": "country-locator",
"version": "2.1.1",
"description": "Detects country by a given geometry",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"dist",
"countries.geojson"
],
"keywords": [
"reverse",
"geocoding",
"geocode",
"locate",
"country",
"countries",
"coordinate"
],
"author": "Carmi Raz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/carmi2214/country-locator.git"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/intersect": "^6.5.0",
"jsonfile": "^6.1.0",
"path": "^0.12.7"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.4.0",
"@types/jsonfile": "^5.0.2",
"jest": "^27.5.1",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^3.9.10"
}
}