-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
43 lines (43 loc) · 908 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
{
"name": "box-intersect",
"version": "1.0.2",
"description": "Any dimensional box intersection",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mikolalysenko/box-intersect.git"
},
"keywords": [
"box",
"intersection",
"collision",
"detection",
"aabb",
"2d",
"3d"
],
"author": "Mikola Lysenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolalysenko/box-intersect/issues"
},
"homepage": "https://github.com/mikolalysenko/box-intersect",
"devDependencies": {
"array-shuffle": "^1.0.0",
"dup": "^1.0.0",
"guarded-array": "^1.0.0",
"iota-array": "^1.0.0",
"tape": "^3.4.0",
"uniq": "^1.0.1"
},
"dependencies": {
"bit-twiddle": "^1.0.2",
"typedarray-pool": "^1.1.0"
}
}