-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 878 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": "assemblysys-point-in-polygon",
"version": "0.0.3",
"description": "An adaptation of the original pointinpolygon algorithm developed in php at assemblysys.com",
"main": "dist/point-in-polygon.js",
"types" : "dist/point-in-polygon.d.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build":"tsc"
},
"devDependencies": {
"typescript": "^2.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniel-brenot/point-in-polygon.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"typescript",
"javascript",
"location",
"polygon",
"gis"
],
"author": "Daniel Brenot",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/daniel-brenot/point-in-polygon/issues"
},
"homepage": "https://github.com/daniel-brenot/point-in-polygon#readme"
}