forked from DudaGod/polygons-intersect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
{
"author": "Sylvain FAUBET <faubet.sylvain@gmail.com>",
"bugs": {
"url": "https://github.com/sylvainfaubet/ts-polygons-intersect/issues"
},
"description": "This script finds all points where the polygons intersect each other. This repository is a fork from DudaGod/polygons-intersect's package, traduced in typescript and fixed from minor bugs.",
"devDependencies": {
"jest": "^24.9.0",
"ts-jest": "^26.5.1",
"tslint": "^5.20.1"
},
"keywords": [
"2d",
"polygon",
"intersect",
"typescript"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"name": "ts-polygons-intersect",
"repository": {
"type": "git",
"url": "https://github.com/sylvainfaubet/ts-polygons-intersect"
},
"scripts": {
"prepare": "npm run build",
"test": "jest",
"build": "tsc --project tsconfig.app.json",
"lint": "tslint --project ."
},
"version": "2.0.2",
"dependencies": {
"@types/jest": "^26.0.20",
"ts-node": "^8.10.2",
"typescript": "^4.1.5"
}
}