-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
44 lines (44 loc) · 918 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
36
37
38
39
40
41
42
43
44
{
"name": "collisions",
"version": "2.0.14",
"description": "Collision detection for circles, polygons, and points",
"module": "src/Collisions.mjs",
"types": "collisions.d.ts",
"scripts": {
"build": "rm -rf ./docs/* && esdoc && webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sinova/Collisions.git"
},
"keywords": [
"Collision",
"Separating Axis Theorem",
"Bounding Volume Hierarchy",
"SAT",
"BVH",
"Circle",
"Polygon",
"Line",
"Shape",
"Separating",
"Axis",
"Theorem",
"Bounding",
"Volume",
"Hierarchy"
],
"author": "Samuel Hodge",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sinova/Collisions/issues"
},
"homepage": "https://github.com/Sinova/Collisions#readme",
"devDependencies": {
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"html-webpack-plugin": "^2.30.1",
"npm": "^5.5.1",
"webpack": "^3.9.0"
}
}