forked from vanruesc/sparse-octree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.3 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "sparse-octree",
"version": "4.0.2",
"description": "A sparse octree data structure.",
"homepage": "https://github.com/vanruesc/sparse-octree",
"main": "build/sparse-octree.js",
"typings": "src/typings.d.ts",
"license": "Zlib",
"keywords": [
"partition",
"hierarchy",
"subdivision",
"raycasting",
"3d",
"spatial",
"voxel",
"points",
"frustum",
"culling"
],
"author": {
"name": "Raoul van Rüschen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/sparse-octree.git"
},
"bugs": {
"url": "https://github.com/vanruesc/sparse-octree/issues"
},
"files": [
"src",
"build"
],
"scripts": {
"build": "grunt",
"test": "grunt --production"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"iterator-result": "0.x.x",
"math-ds": "0.x.x",
"octree-helper": "0.x.x",
"rollup-plugin-buble": "^0.16.0",
"three": "0.87.x"
},
"devDependencies": {
"grunt": "1.x.x",
"grunt-cli": "1.x.x",
"grunt-contrib-copy": "1.x.x",
"grunt-contrib-nodeunit": "1.x.x",
"grunt-contrib-uglify": "3.x.x",
"grunt-esdoc": "0.x.x",
"grunt-eslint": "20.x.x",
"grunt-rollup": "6.x.x",
"jit-grunt": "0.x.x",
"load-grunt-config": "0.x.x",
"rollup-plugin-node-resolve": "3.x.x",
"time-grunt": "1.x.x"
}
}