-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 1.68 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
{
"name": "gltf-bounding-box",
"version": "0.4.1",
"description": "Computes the global bounding box of a gltf model",
"main": "dist/index.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"test-browser": "gulp test-browser",
"watch": "gulp watch",
"build": "gulp build",
"coverage": "gulp coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/wanadev/gltf-bounding-box.git"
},
"keywords": [
"gltf",
"gltf2",
"boudings",
"3d",
"models"
],
"author": "Wanadev <http://www.wanadev.fr/>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wanadev/gltf-bounding-box/issues"
},
"homepage": "https://github.com/wanadev/gltf-bounding-box",
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-register": "6.26.0",
"chai": "4.1.2",
"del": "3.0.0",
"glob": "7.1.2",
"gulp": "3.9.1",
"gulp-eslint": "5.0.0",
"gulp-filter": "5.1.0",
"gulp-istanbul": "1.1.3",
"gulp-livereload": "3.8.1",
"gulp-load-plugins": "1.5.0",
"gulp-mocha": "6.0.0",
"gulp-plumber": "1.2.0",
"gulp-rename": "1.4.0",
"gulp-sourcemaps": "2.6.4",
"gulp-uglify": "3.0.1",
"isparta": "4.1.0",
"json-loader": "0.5.7",
"mocha": "5.2.0",
"natives": "1.1.6",
"sinon": "6.1.4",
"sinon-chai": "3.2.0",
"webpack": "4.16.5",
"webpack-stream": "5.1.1"
},
"babelBoilerplateOptions": {
"entryFileName": "index.js",
"mainVarName": "gltfBoundingBox"
},
"dependencies": {
"lodash": "^4.17.5",
"matrixmath": "^2.2.2"
}
}