forked from gkjohnson/three-mesh-bvh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
65
66
67
68
69
70
{
"name": "three-mesh-bvh",
"version": "0.2.0",
"description": "A BVH implementation to speed up raycasting against three.js meshes.",
"module": "src/index.js",
"main": "umd/index.js",
"scripts": {
"start": "concurrently \"parcel watch ./example/*.html --out-dir ./example/bundle/ --public-url . --no-cache\" \"rollup -w -c\" \"static-server\"",
"generate-cast-functions": "node ./scripts/generate-cast-functions.js",
"build": "npm run generate-cast-functions && rollup -c & parcel build ./example/*.html --out-dir ./example/bundle/ --public-url . --no-cache --no-source-maps --no-content-hash",
"test": "npm run generate-cast-functions && jest",
"lint": "npm run generate-cast-functions && eslint \"./src/*.js\" \"./test/*.js\" \"./extra/*.js\"",
"benchmark": "npm run generate-cast-functions && node benchmark/index.js"
},
"files": [
"src/*",
"umd/*",
"extra/*"
],
"keywords": [
"graphics",
"raycast",
"tree",
"bounds",
"threejs",
"three-js",
"bounds-hierarchy",
"performance",
"geometry",
"mesh",
"distance",
"intersection",
"acceleration",
"bvh"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/three-mesh-bvh.git"
},
"author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/three-mesh-bvh/issues"
},
"homepage": "https://github.com/gkjohnson/three-mesh-bvh#readme",
"peerDependencies": {
"three": ">= 0.102.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"babel-jest": "^24.1.0",
"concurrently": "^4.1.0",
"dat.gui": "^0.7.3",
"eslint": "^5.14.1",
"eslint-config-mdcs": "^4.2.3",
"eslint-plugin-jest": "^23.6.0",
"jest": "^24.1.0",
"jest-cli": "^24.8.0",
"parcel-bundler": "^1.12.4",
"rollup": "^0.68.1",
"script-loader": "^0.7.2",
"simplex-noise": "^2.4.0",
"static-server": "^2.2.1",
"stats.js": "^0.17.0",
"three": "^0.104.0"
},
"dependencies": {}
}