-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 894 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
{
"name": "@rainder/point-in-polygon",
"version": "1.0.2",
"description": "Fast point in polygon algorithm",
"main": "build/point-in-polygon.js",
"types": "build/point-in-polygon.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/rainder/node-point-in-polygon.git"
},
"keywords": [
"point",
"in",
"polygon"
],
"author": "Andrius Skerla",
"license": "ISC",
"bugs": {
"url": "https://github.com/rainder/node-point-in-polygon/issues"
},
"homepage": "https://github.com/rainder/node-point-in-polygon#readme",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}