-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 855 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
{
"name": "geoenclave",
"version": "1.1.4",
"description": "Validate if a point is inside a given polygon using GeoEnclave.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"sample": "ts-node src/example.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"geoenclave",
"geocoordinate",
"validation",
"pont-in-polygon",
"pont",
"polygon",
"ray casting",
"winding number",
"location-validation"
],
"author": "Sandip Basnet",
"homepage": "https://github.com/mondyfy/geoenclave#readme",
"repository": "https://github.com/mondyfy/geoenclave.git",
"bugs": {
"url": "https://github.com/mondyfy/geoenclave/issues",
"email": "mondyfy@gmail.com"
},
"devDependencies": {
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"license": "MIT"
}